---
title: "List wallet policy revisions"
method: GET
path: "/v1/payments/wallets/{walletId}/policies/revisions"
tags: ["Payments"]
---

# List wallet policy revisions

`GET /v1/payments/wallets/{walletId}/policies/revisions`

Returns immutable revisions for the wallet control profile in newest-first order, including the currently active revision reference.

## Path parameters

- `walletId` string, required — Provider wallet ID — the `walletId` field returned by GET /v1/wallets. The wallet record `id` and the public key are not accepted.

## 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.

## Response `200`

Wallet policy revision history

- object — Standard success response envelope.
  - `data` object, required — Wallet control profile and its immutable revision history.
    - `profile` object, nullable, required — Wallet control profile owning the returned revisions.
      - `id` string, required
      - `organizationId` string, required
      - `projectId` string, nullable, required
      - `custodyWalletId` string, required
      - `name` string, required
      - `status` 'draft' | 'active' | 'disabled' | 'archived', required
      - `activeRevisionId` string, nullable, required
      - `createdBy` string, nullable, required
      - `createdAt` string, date-time, required — ISO 8601 timestamp.
      - `updatedAt` string, date-time, required — ISO 8601 timestamp.
      - `activatedAt` string, date-time, nullable, required — ISO 8601 timestamp.
      - `archivedAt` string, date-time, nullable, required — ISO 8601 timestamp.
    - `revisions` object[], required
      - `id` string, required — Immutable wallet policy revision ID.
      - `profileId` string, required — Wallet control profile ID.
      - `revisionNumber` integer, required — Monotonically increasing profile revision number.
      - `rules` union[], required — Rules stored in this revision.
        - union — Wallet control profile rule. Supported kinds include operation_family, operation_type, asset, destination, amount, approval, and always. Program-family operations include earn_vault_deposit.
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'operation_family', required
            - `family` 'transfer' | 'payment' | 'ramp' | 'issuance' | 'program'
            - `families` string[]
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'operation_type', required
            - `operationType` 'earn_vault_deposit' | 'issuance_burn_execute' | 'issuance_force_burn_execute' | 'issuance_mint_execute' | 'issuance_seize_execute' | 'issuance_update_authority_execute' | 'payment_transfer_batch_execute' | 'payment_transfer_execute' | 'ramp_offramp_quote' | 'ramp_onramp_quote' | 'recurring_payment_collection' | 'recurring_payment_create' | 'recurring_payment_update'
            - `operationTypes` string[]
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'asset', required
            - `asset` string
            - `assets` string[]
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'destination', required
            - `allowlist` string[]
            - `blocklist` string[]
            - `destination` string
            - `destinations` string[]
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'amount', required
            - `min` string
            - `max` string
            - `asset` string
            - `assets` string[]
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'approval', required
            - `families` string[]
            - `operationTypes` string[]
            - `assets` string[]
            - `approvalGroupId` string
          - object
            - `id` string
            - `name` string
            - `description` string
            - `action` 'allow' | 'deny' | 'approval_required' | 'provider_approval_required' | 'review'
            - `kind` 'always', required
      - `defaultAction` 'allow' | 'deny' | 'approval_required' | 'review', required
      - `commitMessage` string, nullable, required — Message describing the revision changes, when provided.
      - `createdBy` string, nullable, required
      - `createdAt` string, date-time, required — ISO 8601 timestamp.
      - `activatedAt` string, date-time, nullable, required — ISO 8601 timestamp.
      - `isActive` boolean, required — Whether this is the profile's currently active revision.
  - `meta` object, required — Response metadata.
    - `requestId` string, required — Request identifier for tracing.
    - `timestamp` string, date-time, required — ISO 8601 timestamp.

## Other responses

- `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)
