Avatar Service

Endpoints for retrieving avatars from Jive. For retrieving avatars based upon a particular user utilize the User Service and for retrieving the currently authenticated user's avatar utilize My Service. There are three kinds of avatars that this service handles

  1. The default avatar is the avatar a user has when they have not configured an avatar.
  2. System avatars are the default avatars provided by Jive that users can configure without having to upload a new avatar.
  3. The disabled avatar is the avatar given to users when they have been disabled in Jive.

ResourceDescription
Get defaultReturns the system default avatar.
Get disabledReturns the common avatar for disabled users.
Get system avatarReturns the system avatar with the given global avatar identifier.

Get default

Returns the system default avatar. If a user has not configured their avatar they will have the system default avatar configured by default, this endpoint returns that avatar.

GET http://domain:port/application_context/api/core/v2/avatars/default

Response

TypeDescription
Responsethe system default avatar.

Get disabled

Returns the common avatar for disabled users.

GET http://domain:port/application_context/api/core/v2/avatars/disabled

Response

TypeDescription
Responsethe common avatar for disabled users.

Get system avatar

Returns the system avatar with the given global avatar identifier.

GET http://domain:port/application_context/api/core/v2/avatars/{id}

Path Parameters

NameTypeDescriptionDefault Value
idlongthe system-wide unique identifier for the avatar. 

Response

TypeDescription
Responsethe system avatar with the given global avatar identifier.