System Avatar

System Avatars
- System Avatars Manage
GET global/systemAvatars
GET global/systemAvatars/{id}
Model
System Avatar JSON Format

System Avatar is represented as simple flat JSON objects with the following keys:

Name Type Description
id guid Id of the system avatar.
description string Description of the system avatar.
avatarImage string Url of the system avatar.
Endpoint
Get the list of System Avatars

GET global/systemAvatars

Parameters:
No Parameters
Response:

An array of   System Avatar

Example

Sample Request:

curl https://api15.comm100.io/v4/global/systemAvatars \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

[{"id":"208cae1d-1448-45d8-89d3-69a3b2f17599","avatarImage":"https://api15.comm100.io/v4/Global/systemAvatars/208cae1d-1448-45d8-89d3-69a3b2f17599/avatarImage","description":"girl04.svg"}]
Get a single System Avatar

GET global/systemAvatars/{id}

Parameters:
No Parameters
Response:
Example

Sample Request:

curl https://api15.comm100.io/v4/global/systemAvatars/208cae1d-1448-45d8-89d3-69a3b2f17599 \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \

Response:

 HTTP/1.1 200 OK

{"id":"208cae1d-1448-45d8-89d3-69a3b2f17599","avatarImage":"https://api15.comm100.io/v4/Global/systemAvatars/208cae1d-1448-45d8-89d3-69a3b2f17599/avatarImage","description":"girl04.svg"}