Skip to main content
POST
/
api
/
v1
/
endpoints
/
{endpointId}
/
execute
cURL
curl --request POST \
  --url http://localhost:52000/api/v1/endpoints/{endpointId}/execute \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "variables": {},
  "body": "<unknown>",
  "successCondition": "<string>",
  "httpMethod": "<string>",
  "httpHeaders": {},
  "httpParameters": {},
  "grpcServiceName": "<string>",
  "grpcMethodName": "<string>",
  "grpcStubPath": "<string>"
}
'
{
  "statusCode": 123,
  "success": true,
  "message": "<string>",
  "responseTimeMs": 123,
  "data": "<unknown>",
  "rawResponse": "<string>"
}

Path Parameters

endpointId
integer<int64>
required

Body

application/json
url
string
variables
object
body
any
successCondition
string
httpMethod
string
httpHeaders
object
httpParameters
object
grpcServiceName
string
grpcMethodName
string
grpcStubPath
string

Response

200 - */*

OK

statusCode
integer<int32>
success
boolean
message
string
responseTimeMs
integer<int64>
data
any
rawResponse
string