PUT
/
sequences
/
{sequence_id}
/
cancel
curl --request PUT \
  --url http://localhost:8080/sequences/{sequence_id}/cancel \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "success": true
  },
  "error": {
    "code": "<string>",
    "status": 123,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

sequence_id
string
required

The sequence id. This can also be a run id.

Response

200
application/json
data
object
error
object