v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
Customers

List customer permissions

Returns a list of all active permissions for the specified customer.

get/customers/{customer_id}/permissions

Path parameters

customer_idstring required

Customer identifier.

Response

A list of permissions.

object'list' required
urlstring required
has_moreboolean required
next_cursorstring

Present only when has_more is true.

Example response

{
  "object": "list",
  "url": "/v4/customers/customer_abc123/permissions",
  "data": [
    {
      "id": "premium_access",
      "source": "apple",
      "active": true,
      "started_at": 1729600000,
      "expires_at": 1761136000,
      "product_id": "monthly_premium"
    }
  ],
  "has_more": false,
  "next_cursor": null
}