Skip to main content
DELETE
/
api
/
v1
/
context
/
add-async
/
{id}
/
cancel
Cancel a context add job
curl --request DELETE \
  --url https://platform-backend.getalchemystai.com/api/v1/context/add-async/{id}/cancel \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "jobId": "job_01HXYZABC",
  "status": "cancelled",
  "message": "Job cancelled successfully"
}

Documentation Index

Fetch the complete documentation index at: https://getalchemystai.com/docs/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Job ID to cancel

Response

Job cancelled successfully

success
boolean
required
Example:

true

jobId
string
required
Example:

"job_01HXYZABC"

status
string
required
Example:

"cancelled"

message
string
required
Example:

"Job cancelled successfully"