Skip to main content
POST
/
sequences
/
cancel
Cancel sequences
curl --request POST \
  --url https://julian.11x.ai/api/v1/sequences/cancel \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "referenceKey": "account_id",
  "referenceValue": "acme-123"
}
'
{
  "success": true
}

Authorizations

x-api-key
string
header
required

Organization API key. Get it from the 11x team or from the platform.

Body

application/json
referenceKey
string
required

Name of the custom input variable to match on.

Minimum string length: 1
Example:

"account_id"

referenceValue
string
required

Value of the custom input variable to match.

Minimum string length: 1
Example:

"acme-123"

reason
string

Optional free-text reason, recorded for auditing.

Response

Cancellation processed (also returned when nothing matched).

success
boolean
required
Example:

true