Skip to main content
POST
/
run
/
{session_id}
/
interrupt
Interrupt run
curl --request POST \
  --url https://api.cloudcruise.com/run/{session_id}/interrupt \
  --header 'cc-key: <api-key>'
{
  "success": true,
  "message": "Run interrupt triggered"
}

Documentation Index

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

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

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Path Parameters

session_id
string
required

The unique identifier for the workflow execution session

Response

Run successfully interrupted or cleared from queue

success
boolean

Whether the interrupt was successful

message
string

Details about the interrupt action taken

Example:

"Run interrupt triggered"