v4

OpenAPI 3.1.02026-08-01207318738.7 KB
AI

List individual entity groups' AI credit limits

List the organization's active individual embed entity-group AI credit limits, keyed by the embed entity string. Only entity groups 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 add/remove-users permission as the PATCH.

get/api/v1/ai/credit-controls/entity-groups

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 entity groups' individual AI credit limits.

Example response

{
  "records": [
    {
      "creditLimit": 50,
      "entity": "acme-corp"
    }
  ]
}