latestOpenAPI 3.0.32026-08-20146131.7 MB

672b1916ba61

Issuance

Get asset audit history

Returns the aggregated audit history for an issued token: events logged against the token and its child resources (transactions, allowlist entries, frozen accounts), newest first. Supports filtering by action type.

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

Path parameters

tokenIdstring required

Token identifier.

Example:tok_example

Token identifier.

Query parameters

actionstring

Filter by audit action.

Filter by audit action.

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

Asset audit history

Example response

{
  "data": [
    {
      "action": "freeze",
      "resourceType": "frozen_account",
      "actorType": "user",
      "actorLabel": "Jordan Lee",
      "status": "success",
      "createdAt": "2026-07-19T12:00:00.000Z"
    }
  ],
  "meta": {
    "requestId": "req_example"
  }
}