Gravatar · Example Payload

Getprofile

Returns the information available for the authenticated user. It's equivalent to the full profile information available in the `/profiles/{profileIdentifier}` endpoint.

profiles

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

Top-level fields

operationIdpathmethodsummarydescriptiontagsparametersresponseExamples

Example Payload

Raw ↑
{
  "operationId": "getProfile",
  "path": "/me/profile",
  "method": "GET",
  "summary": "Get profile information for the authenticated user",
  "description": "Returns the information available for the authenticated user. It's equivalent to the full profile information available in the `/profiles/{profileIdentifier}` endpoint.",
  "tags": [
    "profiles"
  ],
  "parameters": [],
  "responseExamples": {
    "404": {
      "disabled": {
        "value": {
          "error": "Profile is disabled",
          "code": "disabled"
        }
      }
    }
  }
}