Skip to main content
POST
/
api
/
data-readiness
/
workflows
/
{configuration_id}
/
runs
/
{run_id}
/
cancel
Cancel Workflow Run
curl --request POST \
  --url https://api.example.com/api/data-readiness/workflows/{configuration_id}/runs/{run_id}/cancel \
  --header 'Authorization: Bearer <token>'
{
  "cancelled_at": "2024-01-15T10:32:00Z",
  "id": "123e4567-e89b-12d3-a456-426614174002",
  "status": "cancelled"
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Path Parameters

configuration_id
string<uuid>
required

Configuration ID

run_id
string<uuid>
required

Run ID

Response

Successful Response

Response for workflow run cancellation.

id
string<uuid>
required

Run identifier

Example:

"123e4567-e89b-12d3-a456-426614174002"

status
string
required

Updated status (cancelled)

Example:

"cancelled"

cancelled_at
string
required

Cancellation timestamp (ISO 8601)

Example:

"2024-01-15T10:32:00Z"