Soft delete an assistant by setting it as inactive. The assistant will no longer be available for use but can be restored.
DELETEhttps://api.aitronos.com/v1/assistants/{assistant_id}
assistant_id string required
The unique identifier of the assistant to delete.
Returns 204 No Content on successful deletion. No response body is returned.
Bash
- Bash
- Python
- JavaScript
curl https://api.aitronos.com/v1/assistants/asst_abc123 \
-X DELETE \
-H "X-API-Key: $FREDDY_API_KEY"Response:
Empty response body. The assistant has been successfully deleted.