Skip to main content
GET
/
users
/
{id}
/
properties
Retrieve user properties
curl --request GET \
  --url https://api.qonversion.io/v3/users/{id}/properties \
  --header 'Authorization: Bearer <token>'
[
  {
    "key": "_q_email",
    "value": "test@email.com"
  },
  {
    "key": "_q_name",
    "value": "John Doe"
  },
  {
    "key": "client_source",
    "value": "google_ads"
  }
]
Qonversion-defined properties are prefixed with _q_ (e.g. _q_email). Custom properties use your own keys.

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

Properties retrieved

key
string

Property identifier. Qonversion-defined keys start with _q_ prefix.

Example:

"_q_email"

value
string

Property value

Example:

"test@email.com"