latestOpenAPI 3.0.32026-08-20146131.7 MB

672b1916ba61

Issuance

List frozen accounts

Lists frozen accounts for a token.

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

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.

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

Frozen accounts

Example response

{
  "data": [
    {
      "id": "frz_example",
      "tokenId": "tok_example",
      "accountAddress": "So11111111111111111111111111111111111111112",
      "reason": "Compliance hold",
      "frozenAt": "2025-01-05T00:00:00.000Z",
      "frozenBy": "key_example",
      "unfrozenAt": "2025-01-10T00:00:00.000Z",
      "signature": "sig_example"
    }
  ],
  "meta": {
    "requestId": "req_example"
  }
}