Skip to main content
GET
/
users
/
{user_id}
Get a user
curl --request GET \
  --url https://api.qonversion.io/v4/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "user",
  "id": "user_abc123",
  "url": "/v4/users/user_abc123",
  "environment": "production",
  "created_at": "2025-09-15T12:30:00Z",
  "identity_id": "<string>"
}

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

user_id
string
required

User identifier.

Response

User details

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

Unique user identifier.

Example:

"user_abc123"

url
string
required

Canonical API path.

Example:

"/v4/users/user_abc123"

environment
string
required

Environment the user belongs to (e.g. "sandbox", "production").

Example:

"production"

created_at
string<date-time>
required

Creation timestamp (ISO 8601 UTC).

Example:

"2025-09-15T12:30:00Z"

identity_id
string | null

External identity identifier, if set. Null when not linked to an identity.