Delete a specific assistant version
DELETE/ai/assistants/:assistant_id/versions/:version_id
Permanently removes a specific version of an assistant. Can not delete main version
Request
Path Parameters
assistant_id Assistant Idrequired
version_id Version Idrequired
Responses
204: Returns HTTP 204 No Content on successful deletion
422: Validation Error
- application/json
Request samples
curl -L -X DELETE 'https://api.telnyx.com/v2/ai/assistants/:assistant_id/versions/:version_id' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}