v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
User Properties

List properties for a user

Returns all stored properties for the specified user (up to 100 per user). The response is always a single page — there is no cursor pagination, so has_more is always false and next_cursor is always null. Qonversion-defined keys are prefixed with _q_ (e.g., _q_email).

get/users/{user_id}/properties

Path parameters

user_idstring required

Qonversion User ID. SDK-generated IDs are prefixed with QON_.

Response

A list of user properties.

object'list' required
urlstring required
has_moreboolean required
next_cursorstring nullable

Example response

{
  "url": "/v4/users/QON_3af4c5b8a4d24f21b72e9d0c8aef9d4e/properties",
  "data": [
    {
      "key": "color",
      "value": "blue"
    }
  ]
}