PUT
/
api
/
v1
/
trajectories
/
{id}
/
status
Update Trajectory Status
curl --request PUT \
  --url https://agent-platform.staging.hcompanyprod.fr/api/v1/trajectories/{id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "paused"
}'
"<any>"

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
status
enum<string>
required
Available options:
paused,
running,
interrupted

Response

Successful Response

The response is of type any.