Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the assistant to delete.
curl --request DELETE \
--url https://api.openai.com/v1/assistants/{assistant_id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"deleted": true,
"object": "assistant.deleted"
}
Delete an assistant.
curl --request DELETE \
--url https://api.openai.com/v1/assistants/{assistant_id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"deleted": true,
"object": "assistant.deleted"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The ID of the assistant to delete.
Was this page helpful?