v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
User Properties

Create user properties

Sets properties for a user. Supports partial success - returns both saved properties and errors.

Rate limit: Properties endpoints are rate-limited per project (default 30 requests per second; configurable on the server). Exceeding the limit returns 429.

post/users/{id}/properties

Path parameters

idstring required

Qonversion User ID

Request body

keystring

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

valuestring

Property value

Example request

[
  {
    "key": "_q_email",
    "value": "test@email.com"
  }
]

Response

Properties processed (partial success possible)

Example response

{
  "savedProperties": [
    {
      "key": "_q_email",
      "value": "test@email.com"
    }
  ]
}