POST
/
v0
/
tasks
/
trigger
curl --request POST \
  --url https://api.avidoai.com/v0/tasks/trigger \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-application-id: <api-key>' \
  --data '{
  "taskId": "456e4567-e89b-12d3-a456-426614174000"
}'
{
  "success": true
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

x-application-id
string
header
required

Your unique application ID. Get this from the Connections page in Avido.

Body

application/json

Request body for triggering a task

taskId
string
required

ID of the task to run

Example:

"456e4567-e89b-12d3-a456-426614174000"

Response

200
application/json
Successfully started test execution

Indicates whether the task was triggered successfully

success
boolean
required

Whether the task was triggered successfully

Example:

true