v1

latestOpenAPI 3.1.02026-07-1371926.0 KB
Consumers

List Consumers

List API consumers for an app. Ordered by ID (descending). With pagination.

get/v1/apps/{app_id}/consumers

Path parameters

app_idinteger required

App ID

App ID

Query parameters

requests_sincestring date-time nullable

Filter to consumers that have made requests since the given date and time in ISO 8601 format, if given.

Example:2025-05-14T00:00:00Z

Filter to consumers that have made requests since the given date and time in ISO 8601 format, if given.

next_tokenstring nullable

Token to fetch the next page of consumers, as returned by a previous request.

Token to fetch the next page of consumers, as returned by a previous request.

limitinteger

Maximum number of consumers to return.

Maximum number of consumers to return.

Response

Successful Response

has_moreboolean required

Whether there are more consumers to list.

next_tokenstring nullable required

Token to fetch the next page of consumers, if there are more.

Example response

{
  "data": [
    {
      "id": 1,
      "identifier": "user-123",
      "name": "John Doe",
      "group": {
        "id": 1,
        "name": "Admin"
      }
    }
  ]
}