PUT
/
sequences
/
{sequence_id}
/
start
curl --request PUT \
  --url http://localhost:8080/sequences/{sequence_id}/start \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "success": true
  },
  "error": {
    "code": "sequence_not_found",
    "status": 400,
    "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

ID or custom ID for the sequence

Response

200
application/json
data
object
error
object