Skip to content
Last updated

title: Detach Assistant Workflow keywords:

  • detach assistant workflow
  • delete
  • detach
  • assistant
  • workflow

Detach the workflow from an assistant (does not delete the workflow).

DELETEhttps://api.aitronos.com/v1/assistants/{assistant_id}/workflow

Path Parameters

assistant_id string required

The assistant id parameter.


Returns

assistant_id string

Assistant ID

workflow_id string or null

Detached workflow ID

message string

Status message

cURL
curl -X DELETE "https://api.aitronos.com/v1/assistants/asst_abc123/workflow" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

200 OK
{
  "assistant_id": "asst_abc123def456",
  "workflow_id": "flow_abc123def456",
  "message": "Operation completed successfully"
}