GET
/
v2
/
identity
/
whoami
curl --request GET \
  --url https://api.loyaltylion.com/v2/identity/whoami
{
  "identity": {
    "kind": "api_key",
    "account_id": 1,
    "program_id": 2,
    "scopes": [
      "read_customers",
      "read_orders"
    ],
    "integration": null
  }
}

Check your API caller identity with the LoyaltyLion API. This will return an identity object with details about the authenticating API method and its associated permissions.

If your API authentication is invalid, this endpoint will return a 401 response.

Response

200
application/json
200
identity
object
required
Example:
{
  "kind": "api_key",
  "account_id": 1,
  "program_id": 2,
  "scopes": ["read_customers", "read_orders"],
  "integration": null
}