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

Headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT>

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_PAT"

Example response

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

Response fields

Returns the Identity object.

Errors

HTTPTypeTrigger
401authentication_errorPAT invalid or expired.
403permission_errorNot authorized for this resource.
404not_found_errorIdentity 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.

Update an identity

List identity configs