v4

latestOpenAPI 3.1.02026-08-01207318738.7 KB
AI

List individual users' AI credit limits

List the organization's active individual user AI credit limits, ordered by userId ascending. Only users with an individual limit appear — everyone else follows the org default. A null creditLimit is an explicit unlimited override, distinct from following the default. Paginated via opaque cursors: pass pageInfo.nextCursor from one response as the cursor query parameter on the next request. Requires the same manage-user-attributes permission as the PATCH.

get/api/v1/ai/credit-controls/users

Query parameters

cursorstring

Cursor for pagination (from previous response nextCursor)

Example:eyJpZCI6IjEyMzQ1In0

Cursor for pagination (from previous response nextCursor)

pageSizeinteger

Number of results per page (1-100, integer)

Example:20

Number of results per page (1-100, integer)

Response

One page of users' individual AI credit limits.

Example response

{
  "records": [
    {
      "creditLimit": 50,
      "userId": "f4a2b3c8-0d1e-4f5a-9b6c-7d8e9f0a1b2c"
    }
  ]
}