Skip to main content
Identities

Get an identity

Retrieve a Forward identity by ID.

GET /api/v1/forward/identities/{identity_id} Returns an Identity owned by the authenticated account.

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>

Path parameters

ParameterTypeRequiredDescription
identity_idstringYesForward Identity ID.

Example request

curl -s -X GET 'https://api.qoder.com/api/v1/forward/identities/idn_019eabc123' \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN"

Example response

HTTP 200 OK
{
  "id": "idn_019eabc123",
  "external_id": "user_456",
  "name": "Example User",
  "identity_type": "normal",
  "enabled": true,
  "metadata": {
    "channel": "web"
  },
  "created_at": "2026-06-18T10:00:00Z",
  "updated_at": "2026-06-18T10:00:00Z"
}

Response fields

FieldTypeDescription
idstringForward Identity ID.
external_idstringEnd-user ID from the integrator's system.
namestringIdentity display name.
identity_typestringIdentity type. A standard Identity returns normal.
enabledbooleanWhether the Identity can be used for new operations.
metadataobjectCustom metadata.
created_atstringCreation time in RFC 3339 format.
updated_atstringMost recent update time in RFC 3339 format.

Errors

HTTPTypeCodeTrigger
401authentication_errorauthentication_requiredThe PAT or SAT is invalid or expired.
403permission_error-The caller is not authorized to access this resource.
404not_found_error-The Identity does not exist or is not visible to the caller.

Notes

  • Disabled identities can still be retrieved.
  • Deleted identities must not be used to create new sessions.