Gravatar · Example Payload

Getprofilebyid

Returns a profile by the given identifier.

profiles

Getprofilebyid 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": "getProfileById",
  "path": "/profiles/{profileIdentifier}",
  "method": "GET",
  "summary": "Get profile by identifier",
  "description": "Returns a profile by the given identifier.",
  "tags": [
    "profiles"
  ],
  "parameters": [
    {
      "name": "profileIdentifier",
      "in": "path",
      "required": true,
      "description": "This can either be an SHA256 hash of an email address or profile URL slug.",
      "schema": {
        "type": "string"
      }
    }
  ]
}