NoxVR Documentation
Avatars

Delete avatar

Delete an avatar.

DELETE
/avatars/{avatar_id}
AuthorizationBearer <token>

Bearer token authentication for user sessions

In: header

Path Parameters

avatar_idinteger

Response Body

application/json

application/json

application/json

application/json

curl -X DELETE "https://nox.hactazia.fr/api/avatars/0"
{
  "success": true
}
{
  "error": {
    "message": "You are not logged in.",
    "code": 7,
    "status": 401
  },
  "data": null
}
{
  "error": {
    "message": "You are not authorized to {0}.",
    "code": 8,
    "status": 401
  },
  "data": null
}
{
  "error": {
    "message": "Resource not found.",
    "code": 3,
    "status": 404
  },
  "data": null
}