DELETE
/
api
/
v1
/
avatars
/
{avatarId}
Delete avatar
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://realtimeavatar.ai/api/v1/avatars/{avatarId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

TIC API key as a bearer token: Authorization: Bearer tic_live_... or tic_test_.... Create keys in the dashboard at /platform/dashboard or via POST /api/v1/api-keys.

Path Parameters

avatarId
string
required

Platform avatar id (starts with ava_).

Pattern: ^ava_

Response

Deleted