Skip to main content
POST
/
api
/
executions
/
v2
/
by-id
BatchGetExecutions
curl --request POST \
  --url https://developer.synq.io/api/executions/v2/by-id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "executionIds": [
    "<string>"
  ]
}'
{
  "executions": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

BatchGetExecutionsRequest requests specific executions by ID.

executionIds
string[]

Execution IDs to retrieve.

Required array length: 1 - 100 elements

Response

200 - application/json

Success

BatchGetExecutionsResponse contains the requested executions.

executions
object

Map of execution ID to EntityExecution. Only includes executions that were found and accessible.