Gravatar · Example Payload

Updateavatar

Updates the avatar data for a given avatar for the authenticated user.

avatars

Updateavatar is an example object payload from Gravatar, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdpathmethodsummarydescriptiontagsparameters

Example Payload

Raw ↑
{
  "operationId": "updateAvatar",
  "path": "/me/avatars/{imageHash}",
  "method": "PATCH",
  "summary": "Update avatar data",
  "description": "Updates the avatar data for a given avatar for the authenticated user.",
  "tags": [
    "avatars"
  ],
  "parameters": [
    {
      "name": "imageHash",
      "in": "path",
      "required": true,
      "description": "The hash of the avatar to update.",
      "schema": {
        "type": "string"
      }
    }
  ]
}