---
title: "Get a list of assignments"
method: GET
path: "/api/v1-beta/customers/{id}/assignments"
tags: ["Beta - Assignments"]
---

# Get a list of assignments

`GET /api/v1-beta/customers/{id}/assignments`

Returns a cursor-paginated list of capability assignments for the given customer. An assignment ties an entity to a capability with a usage limit and reset cadence.

## Path parameters

- `id` string, required

## Query parameters

- `after` string, uuid
- `before` string, uuid
- `limit` integer
- `entityId` string
- `capabilityId` string

## Headers

- `X-ACCOUNT-ID` string
- `X-ENVIRONMENT-ID` string

## Response `200`

A paginated list of assignment objects.

- AssignmentListResponseDto — Response list object
  - `data` object[], required
    - `id` string, uuid, required — Synthetic UUID identifier — also the cursor anchor for paginated lists
    - `entityId` string, required — The entity refId this assignment is attached to
    - `featureId` string — Feature refId this assignment grants (present for feature capabilities).
    - `currencyId` string — Currency refId this assignment grants (present for credit capabilities).
    - `scopeEntityIds` string[], required — Dimension-scoped sub-budget key: the set of entity refIds this budget applies to. Empty is the node-wide budget that always matches; a non-empty set only applies when every listed entity is present in the resolved set (order-insensitive).
    - `parentId` string, nullable, required — Parent entity refId in the hierarchy, or `null` for a root.
    - `usageLimit` number, required — Maximum usage allowed within one cadence window
    - `cadence` 'MONTH', required — Usage-reset cadence. Currently only `MONTH` is supported
    - `createdAt` string, date-time, required — Timestamp of when the record was created
    - `updatedAt` string, date-time, required — Timestamp of when the record was last updated
  - `pagination` object, required — Pagination metadata including cursors for navigating through results
    - `next` string, uuid, nullable, required — Cursor for fetching the next page of results, or null if no additional pages exist
    - `prev` string, uuid, nullable, required — Cursor for fetching the previous page of results, or null if at the beginning

## Other responses

- `400` — bad request.
- `401` — User is not authenticated.
- `403` — User is not allowed to access this resource.
- `429` — Too many requests.

## Changes

- **2026-06-18** `de96c0c4633a` — 5 breaking, 5 info
  - the `data/items/currencyId` response property's minLength was decreased from `1` to `0` for the response status `200`
  - the `data/items/entityId` response property's minLength was decreased from `1` to `0` for the response status `200`
  - the `data/items/featureId` response property's minLength was decreased from `1` to `0` for the response status `200`
  - the `data/items/parentId` response property's minLength was decreased from `1` to `0` for the response status `200`
  - …6 more
- **2026-06-10** `2ecdbf877f12` — 1 breaking, 4 info
  - removed the required property `data/items/capabilityId` from the response with the `200` status
  - added the optional property `data/items/currencyId` to the response with the `200` status
  - added the optional property `data/items/featureId` to the response with the `200` status
  - added the required property `data/items/parentId` to the response with the `200` status
  - …1 more
- **2026-06-08** `3acd63d6c861` — 2 info
  - added the new optional `header` request parameter `X-ACCOUNT-ID`
  - added the new optional `header` request parameter `X-ENVIRONMENT-ID`
- **2026-06-04** `4fa87d66426d` — 1 warning
  - added the new `PricingModelNotSupportedByBillingIntegration` enum value to the `code` response property for the response status `400`
- …earlier changes not shown

[Full history](https://skmtc.dev/stiggio/apis/stigg-api/changes/api/v1-beta/customers/:id/assignments/get.md)

---

[API](https://skmtc.dev/stiggio/apis/stigg-api.md) · [All operations](https://skmtc.dev/stiggio/apis/stigg-api/llms.txt) · [OpenAPI document](https://skmtc.dev/stiggio/apis/stigg-api/revisions/de96c0c4633a?raw)
