Skip to main content
GET
/
users
/
{id}
Retrieve a user
curl --request GET \
  --url https://api.qonversion.io/v3/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "AvwwDqpnj0H3SvCHw70J1GQSPKlkgZwj",
  "identity_id": "custom_identity_id",
  "created": 1658489733,
  "environment": "prod"
}
User IDs are generated by the Qonversion SDK (prefixed with QON_) or set manually via the API.

Authorizations

Authorization
string
header
required

Use your Project Key from the Qonversion dashboard. Example: Bearer test_PV77YHL7qnGvsdmpTs7gimsxUvY-Znl2

Path Parameters

id
string
required

Qonversion User ID

Response

User retrieved successfully

id
string

Qonversion User ID

Example:

"QON_7791a27fc4e747412381842b36a"

identity_id
string

User Identity ID from your auth system

Example:

"awesome_user"

created
integer

User creation time (Unix epoch seconds)

Example:

1658489733

environment
enum<string>

prod or sandbox

Available options:
prod,
sandbox
Example:

"prod"