Skip to main content

Avatars

API Address

[GET] https://3rd-api.xrcloud.belivvr.com/v1/apps/{appId}/resources/avatars

Description

Get all avatar registered in your Application.

Headers

Authorization: Bearer refresh_token

Response

Http Status: 200 OK
Content-Type: application/json

[
{
"resourceId": "avatar1 id",
"resourceType": "AVATAR",
"active": true,
"name": "avatar1",
"publishType": "PUBLIC",
"thumbnailUrl": "https://avatar-thumbnail-url",
"insertedAt": "2022-04-30T07:28:06.574Z",
"updatedAt": "2022-04-30T07:28:06.574Z"
},
{
"resourceId": "avatar2 id",
"resourceType": "AVATAR",
"active": true,
"name": "avatar2",
"publishType": "PUBLIC",
"thumbnailUrl": "https://avatar-thumbnail-url",
"insertedAt": "2022-04-30T07:28:06.574Z",
"updatedAt": "2022-04-30T07:28:06.574Z"
}
]

API Address

[GET] https://3rd-api.xrcloud.belivvr.com/v1/apps/{appId}/resources/avatars/{avatarId}

Description

Get a avatar registered in your Application.

Headers

Authorization: Bearer refresh_token

Response

Http Status: 200 OK
Content-Type: application/json

{
"resourceId": "avatar1 id",
"resourceType": "AVATAR",
"active": true,
"name": "avatar1",
"publishType": "PUBLIC",
"thumbnailUrl": "https://avatar-thumbnail-url",
"insertedAt": "2022-04-30T07:28:06.574Z",
"updatedAt": "2022-04-30T07:28:06.574Z"
}