latestOpenAPI 3.0.32026-08-20146131.7 MB

672b1916ba61

Issuance

List token allowlist

Lists allowlist entries for a token.

get/v1/issuance/tokens/{tokenId}/allowlist

Path parameters

tokenIdstring required

Token identifier.

Example:tok_example

Token identifier.

Query parameters

pageinteger

Page number (1-based).

Example:1

Page number (1-based).

pageSizeinteger

Number of items per page.

Example:50

Number of items per page.

searchstring

Contains-style search over the entry address and label. A blank value is treated as no search filter.

Example:So1

Contains-style search over the entry address and label. A blank value is treated as no search filter.

labelstring

Filter to entries with this exact label (values come from the labels endpoint).

Example:Treasury

Filter to entries with this exact label (values come from the labels endpoint).

Headers

x-project-idstring

Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

Example:prj_example

Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

Response

Allowlist entries

Example response

{
  "data": [
    {
      "id": "tal_example",
      "tokenId": "tok_example",
      "address": "So11111111111111111111111111111111111111112",
      "label": "Treasury",
      "status": "active",
      "addedBy": "key_example",
      "createdAt": "2025-01-01T00:00:00.000Z",
      "revokedAt": "2025-02-01T00:00:00.000Z"
    }
  ],
  "meta": {
    "requestId": "req_example"
  }
}