Skip to main content
GET
/
identities
/
{identity_id}
Get an identity by external ID
curl --request GET \
  --url https://api.qonversion.io/v4/identities/{identity_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "identity",
  "id": "ext-user-123",
  "url": "/v4/identities/ext-user-123",
  "user_id": "QON_abc123def456"
}

Authorizations

Authorization
string
header
required

Bearer authentication using the project Secret Key (prefixed with sk_, or test_sk_ for sandbox). All v4 public endpoints require the Secret Key — see Authentication. Never expose the Secret Key in client-side code.

Path Parameters

identity_id
string
required

The external identity identifier.

Maximum string length: 256
Pattern: ^[a-zA-Z0-9._-]+$

Response

The identity object.

object
enum<string>
required
Available options:
identity
id
string
required

External identity identifier.

Example:

"ext-user-123"

url
string
required

Canonical API path.

Example:

"/v4/identities/ext-user-123"

user_id
string
required

Qonversion user identifier linked to this identity.

Example:

"QON_abc123def456"