System Avatar
  • 04 Jul 2022
  • 1 Minute to read
  • Dark
    Light

System Avatar

  • Dark
    Light

Article summary

System Avatar JSON Format

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

NameTypeDescription
idguidID of the system avatar.
descriptionstringDescription of the system avatar.
avatarImagestringURL of the system avatar.

Get the list of System Avatars

GET global/systemAvatars

  • Parameters:

No Parameters

  • Response:

An array of System Avatar

  • Example

Sample Request:

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

Response:

HTTP/1.1 200 OK

[
  {
      "id": "1b14ede0-9682-4551-8042-e48e750d38bd",
      "avatarImage": "https://partner.comm100.io/api/Global/systemAvatars/2d83d4fd-3114-eb11-80fc-00155d081d0b/avatarImage?PartnerId=10000&version=6fe5d3698cd57ada6f64aa4efe831d31&signature=A8KO9C1BAEQDgsJaWNQf9Ks306s",
      "description": ""
  }
] 

Get a single System Avatar

GET global/systemAvatars/{id}

  • Parameters:

No Parameters

  • Example

Sample Request:

curl https://partnerapi.comm100.io/v4/global/systemAvatars/1b14ede0-9682-4551-8042-e48e750d38bd \ 
    -X 'GET' \ 
    -H 'Authorization: Bearer {access_token}' \ 

Response:

HTTP/1.1 200 OK

[
  {
      "id": "1b14ede0-9682-4551-8042-e48e750d38bd",
      "avatarImage": "https://partner.comm100.io/api/Global/systemAvatars/2d83d4fd-3114-eb11-80fc-00155d081d0b/avatarImage?PartnerId=10000&version=6fe5d3698cd57ada6f64aa4efe831d31&signature=A8KO9C1BAEQDgsJaWNQf9Ks306s",
      "description": ""
  }
] 

Was this article helpful?