---
title: "Execute seize"
method: POST
path: "/v1/issuance/tokens/{tokenId}/seize"
tags: ["Issuance"]
---

# Execute seize

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

Forces a transfer using permanent delegate 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 — Seize (force transfer) request body.
  - `signingWalletId` string — Optional signer wallet — the `walletId` field returned by GET /v1/wallets. The wallet record `id` and the public key are not accepted.
  - `seize` object, required — Forced transfer details.
    - `source` string, required — Source wallet or token account to seize from.
    - `destination` string, required — Destination wallet or token account to receive seized tokens.
    - `amount` string, required — Token amount in UI units (decimal string). Human-readable value such as "1" or "1.5". SDP converts to on-chain base units using the token's decimals field.
    - `delegateAuthority` string — Optional delegate authority address for the seizure.
    - `memo` string — Optional on-chain memo.
  - `options` object — Seize execution options.
    - `priorityFee` union
      - 'none' | 'low' | 'medium' | 'high'
      - integer
    - `simulate` boolean

## Response `200`

Seize executed

- object — Standard success response envelope.
  - `data` object, required — Execute seize response payload.
    - `transaction` object, required — Seize 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)
