Gravatar · Example Payload

Deleteavatar

Deletes a specific avatar for the authenticated user.

avatars

Deleteavatar 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": "deleteAvatar",
  "path": "/me/avatars/{imageHash}",
  "method": "DELETE",
  "summary": "Delete avatar",
  "description": "Deletes a specific avatar for the authenticated user.",
  "tags": [
    "avatars"
  ],
  "parameters": [
    {
      "name": "imageHash",
      "in": "path",
      "required": true,
      "description": "The hash of the avatar to delete.",
      "schema": {
        "type": "string"
      }
    }
  ]
}