Skip to content

Delete Custom Avatar

FreshDELETE
DELETE https://api.creatify.ai/api/personas/{id}/

Permanently delete a custom avatar. This action cannot be undone.

Path Parameters

NameTypeRequiredDescription
idstringYesThe persona ID to delete

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key

Example Request

bash
curl -X DELETE 'https://api.creatify.ai/api/personas/persona-001/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "message": "Persona deleted successfully"
}

Status Codes

CodeDescription
200Avatar deleted successfully
401Unauthorized -- invalid API credentials
404Persona not found
500Internal server error

WARNING

Deleting a custom avatar is permanent. Any future video tasks referencing this avatar will fail. Videos already rendered with this avatar will not be affected.