Skip to content
The Yoto Developer Challenge is on, with $10,000 to win!

get user icons

This endpoint retrieves user's custom icons.

Response

The response is a JSON object with a displayIcons array which contains objects with the following properties:

  • mediaId (string): A unique identifier for the underlying icon file

  • userId (string): The ID of the user who uploaded this icon

  • createdAt (string, ISO 8601): The timestamp (UTC) when this display icon record was created

  • url (string): A publicly accessible icon URL

  • public (boolean): Indicates if the display icon is public. Always false for user's icons.

  • displayIconId (string): Unique identifier for the icon

Responses

200 OK application/json
displayIconsarray
[items]object
createdAtstring
displayIconIdstring
mediaIdstring
publicboolean
urlstring
userIdstring
GET
/media/displayIcons/user/me
Server URL: https://api.yotoplay.com
Authorization (bearerAuth)
Terminal window
curl "https://api.yotoplay.com/media/displayIcons/user/me"
--header "Authorization: Bearer [YOUR_TOKEN]"