Key concepts
- Customer ID — The canonical ID for the customer (equivalent to the Qonversion User ID).
- Permissions — Access rights granted to the customer (granular alternative to entitlements).
- Properties — Same key–value model as user properties, but aggregated per customer.
- Metrics — Aggregated counters (total customers, active subscriptions, churn, etc.) exposed via
/v4/customers/metrics. - GDPR delete —
DELETE /v4/customers/{customer_id}permanently removes all data for a customer.
Available endpoints
| Method | Endpoint | Description | Status |
|---|---|---|---|
| GET | /customers | List customers | New |
| GET | /customers/metrics | Get customer metrics | New |
| DELETE | /customers/{customer_id} | Delete a customer (GDPR) | New |
| GET | /customers/{customer_id} | Get a customer | New |
| GET | /customers/{customer_id}/permissions | List customer permissions | New |
| POST | /customers/{customer_id}/permissions | Grant a permission to a customer | New |
| DELETE | /customers/{customer_id}/permissions/{permission_id} | Revoke a customer permission | New |
| POST | /customers/{customer_id}/properties | Set customer properties | New |