View an identity

Fetch a specific identity.

GET https://api.jsonpad.io/identities/{identityId}

Example

cURL
123curl https://api.jsonpad.io/identities/04c9b5ac-a732-4fbf-a976-2d0e2b883166 \
  -H "Content-Type: application/json" \
  -H "x-api-token: <YOUR TOKEN>"

Parameters

  • required
    identityIdstringAn identity id.

Request headers

  • required
    x-api-tokenstringYour API token.
  • optional
    if-modified-since

    An ISO 8601 date.

    If the identity hasn't been updated since this date, we return an empty 304 ("Not modified") response, and the request will not be counted towards any active rate limits.

Request body

No request body

Response body

200 OK
{
id: "abd01d92-07fc-4317-9bb6-d29a32e31793"
createdAt: "2026-09-05T11:30:30.937Z"
updatedAt: "2026-09-05T11:30:30.937Z"
user: {
id: "7f1fc5ae-0ffc-473b-a792-0bd674b3451e"
createdAt: "2026-09-05T11:30:30.937Z"
updatedAt: "2026-09-05T11:30:30.937Z"
lastActiveAt: "2026-09-05T11:30:30.937Z"
activated: true
displayName: "Sample User"
description: "Sample user description"
}
group: "sample-group"
name: "Sample Identity"
lastLoginAt: "2026-09-05T11:30:30.937Z"
activated: true
}

Response headers

  • last-modified2026-09-05T11:30:30.937ZThe date this identity was last modified.
2024-12-12