GET
/
v1
/
avatar
import BeyondPresence from '@bey-dev/sdk';

const client = new BeyondPresence({
  apiKey: process.env['BEY_API_KEY'], // This is the default and can be omitted
});

const avatars = await client.avatar.list();

console.log(avatars);
[
  {
    "id": "01234567-89ab-cdef-0123-456789abcdef",
    "name": "John Doe"
  }
]

Authorizations

x-api-key
string
header
required

Your Beyond Presence API Key.

Response

200 - application/json

Successful Response

The response is of type AvatarResponseModel · object[].