Skip to main content
POST
/
workflows
/
tasks
/
{task_id}
/
stop
Stop Workflow Task Generation
curl --request POST \
  --url http://{api_base_url}/workflows/tasks/{task_id}/stop \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user": "<string>"
}
'
{
  "result": "success"
}

Authorizations

Authorization
string
header
required

API Key authentication.

Path Parameters

task_id
string<uuid>
required

Task ID from the streaming chunk.

Body

application/json
user
string
required

User identifier.

Response

200 - application/json

Operation successful.

result
string
Example:

"success"