WatchAPIWatchAPI
POST
/apiEndpoint.create

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Get your API key from the WatchAPI Cloud dashboard.

In: header

Request Body

application/json

name*string
Length1 <= length
url*string
method?string
Default"GET"
Value in"GET" | "POST" | "PUT" | "PATCH" | "DELETE" | "HEAD" | "OPTIONS"
bodySchema?string
bodyOverrides?string
headersSchema?
headersOverrides?
headers?
body?string
expectedStatus?integer
Default200
Range100 <= value <= 599
timeout?integer
Default30000
Range0 < value <= 9007199254740991
interval?integer
Default300000
Range0 < value <= 9007199254740991
collectionId?string
isActive?boolean
Defaultfalse

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://watchapi.dev/api/trpc/apiEndpoint.create" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "url": "string"  }'
{
  "id": "string",
  "name": "string",
  "url": "string",
  "method": "string",
  "sourceKey": "string",
  "bodySchema": "string",
  "bodyOverrides": "string",
  "headersSchema": "string",
  "headersOverrides": "string",
  "headers": "string",
  "body": "string",
  "expectedStatus": 0,
  "timeout": 0,
  "interval": 0,
  "lastCheckedAt": "string",
  "isActive": true,
  "verifiedAt": "string",
  "verifiedBy": "string",
  "verificationSource": "string",
  "verificationCommit": "string",
  "verificationEnvironment": "string",
  "userId": "string",
  "organizationId": "string",
  "collectionId": "string",
  "monitoringChecks": null,
  "createdAt": "string",
  "updatedAt": "string"
}
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}