---
title: "Unpause token transfers"
method: POST
path: "/v1/issuance/tokens/{tokenId}/unpause"
tags: ["Issuance"]
---

# Unpause token transfers

`POST /v1/issuance/tokens/{tokenId}/unpause`

Resumes transfers for a token using the pause authority.

## Path parameters

- `tokenId` string, required — Token identifier.

## Headers

- `x-project-id` string — 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.
- `Idempotency-Key` string — Idempotency key for safely retrying mutating requests. 1-255 printable ASCII characters; echoed back on the response.

## Request body

- object — Pause token request body.
  - `options` object — Pause/unpause options.
    - `priorityFee` union
      - 'none' | 'low' | 'medium' | 'high'
      - integer
    - `simulate` boolean

## Response `200`

Token unpaused

- object — Standard success response envelope.
  - `data` object, required — Execute unpause response payload.
    - `transaction` object, required — Unpause transaction record.
      - `id` string, required — Token transaction identifier.
      - `tokenId` string, required — Token identifier.
      - `organizationId` string, required — Organization identifier.
      - `type` 'mint' | 'burn' | 'freeze' | 'unfreeze' | 'seize' | 'force_burn' | 'update_authority' | 'pause' | 'unpause' | 'deploy', required — Transaction type.
      - `status` 'pending' | 'processing' | 'confirmed' | 'finalized' | 'failed', required — Transaction status.
      - `signature` string, nullable, required — Solana transaction signature.
      - `idempotencyKey` string — Idempotency key used for this request.
      - `idempotencyFingerprint` string — Request fingerprint used to validate idempotent retries.
      - `serializedTx` string, nullable, required — Base64-encoded transaction payload, if available.
      - `params` object, required — Operation parameters captured for audit.
      - `slot` integer, nullable, required — Slot number, if confirmed.
      - `blockTime` string, date-time, nullable, required — Block time, if confirmed.
      - `fee` integer, nullable, required — Transaction fee in lamports.
      - `error` string, nullable, required — Error message if the transaction failed.
      - `initiatedByKeyId` string, nullable, required — API key that initiated the transaction.
      - `createdAt` string, date-time, required — Creation timestamp.
      - `updatedAt` string, date-time, required — Last update timestamp.
  - `meta` object, required — Response metadata.
    - `requestId` string, required — Request identifier for tracing.
    - `timestamp` string, date-time, required — ISO 8601 timestamp.

## Other responses

- `400` — Error
- `401` — Error
- `403` — Error
- `404` — Error
- `500` — Error

---

[API](https://skmtc.net/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.net/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/672b1916ba61/schema)
