Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Soft delete an assistant by setting it as inactive. The assistant will no longer be available for use but can be restored.
DELETEhttps://api.freddy.aitronos.com/v1/assistants/{assistant_id}

Path Parameters

assistant_id string required

The unique identifier of the assistant to delete.

Bash
curl https://api.freddy.aitronos.com/v1/assistants/asst_abc123 \
  -X DELETE \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

Returns

A confirmation message indicating successful deletion.

{
  "id": "asst_abc123",
  "deleted": true,
  "message": "Assistant deleted successfully"
}