Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The sequence id
. This can also be a run id
.
curl --request PUT \
--url https://api.open.cx/sequences/{sequence_id}/cancel \
--header 'Authorization: Bearer <token>'
{
"data": {
"success": true
},
"error": {
"code": "<string>",
"status": 123,
"message": "<string>"
}
}
curl --request PUT \
--url https://api.open.cx/sequences/{sequence_id}/cancel \
--header 'Authorization: Bearer <token>'
{
"data": {
"success": true
},
"error": {
"code": "<string>",
"status": 123,
"message": "<string>"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The sequence id
. This can also be a run id
.
Was this page helpful?