> ## Documentation Index
> Fetch the complete documentation index at: https://v3.docs.derive.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Update a wallet's whitelisted transfer recipients

> Adds and/or removes recipient wallet addresses on an account's transfer whitelist via a signed, wallet-level action. Provide the owner wallet, signer, nonce, signature with expiry, and the add and remove address lists. This is an owner-or-admin operation (session keys need the admin scope); it returns the operation id, uuid, and the full whitelist after the update is applied.



## OpenAPI

````yaml /openapi.json post /private/update_whitelisted_recipients
openapi: 3.1.0
info:
  title: Derive v3 API
  version: 0.2.0
  description: JSON-RPC 2.0 methods, served over WebSocket and HTTP POST.
servers:
  - url: https://api.derive.xyz/v3
    description: Production (HTTP POST base)
  - url: https://testnet.api.derive.xyz/v3
    description: Testnet (HTTP POST base)
security: []
tags:
  - name: Subaccounts
    description: >-
      List, inspect, and label subaccounts, portfolios, positions, and
      collateral.
  - name: Session Keys
    description: Register, edit, and list delegated signing keys.
  - name: Account
    description: Wallet-level account information and settings.
  - name: Orderbook
    description: Place, replace, cancel, and query orders, trigger orders, and algos.
  - name: RFQ
    description: 'Request-for-quote: send RFQs, quote, and execute block trades.'
  - name: Vault Shareholders
    description: >-
      Deposit into and withdraw from vaults, and track shares, requests, and
      performance.
  - name: Vault Curators
    description: >-
      Create and operate curated vaults: settle deposit and withdrawal requests,
      and manage vault metadata.
  - name: History
    description: >-
      Per-account historical records: orders, trades, transfers, and
      settlements.
  - name: Market Maker Protection
    description: Configure, read, and reset market-maker protection.
  - name: Transfers & Withdrawals
    description: Move collateral between subaccounts, to other wallets, and on-chain.
  - name: System
    description: Rate limits and transaction lookups.
  - name: Market Data
    description: Instruments, currencies, tickers, and market-wide feeds.
  - name: Referrals
    description: Referral codes and program performance.
  - name: Other
    description: Uncategorized.
paths:
  /private/update_whitelisted_recipients:
    post:
      tags:
        - Transfers & Withdrawals
      summary: Update a wallet's whitelisted transfer recipients
      description: >-
        Adds and/or removes recipient wallet addresses on an account's transfer
        whitelist via a signed, wallet-level action. Provide the owner wallet,
        signer, nonce, signature with expiry, and the add and remove address
        lists. This is an owner-or-admin operation (session keys need the admin
        scope); it returns the operation id, uuid, and the full whitelist after
        the update is applied.
      operationId: private_update_whitelisted_recipients
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWhitelistedRecipientsRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateWhitelistedRecipientsResponse'
        default:
          description: JSON-RPC error (see Error Codes)
components:
  schemas:
    UpdateWhitelistedRecipientsRequest:
      type: object
      required:
        - add
        - nonce
        - remove
        - signature
        - signature_expiry_sec
        - signer
        - wallet
      properties:
        add:
          description: Recipient wallet addresses to add to the whitelist.
          type: array
          items:
            type: string
        nonce:
          type: integer
          format: uint64
          minimum: 0
        remove:
          description: Recipient wallet addresses to remove from the whitelist.
          type: array
          items:
            type: string
        signature:
          type: string
        signature_expiry_sec:
          type: integer
          format: uint64
          minimum: 0
        signer:
          type: string
        wallet:
          description: Wallet whose whitelist is being updated; becomes the action owner.
          type: string
    UpdateWhitelistedRecipientsResponse:
      type: object
      required:
        - op_uuid
        - operation_id
        - whitelisted_recipients
      properties:
        op_uuid:
          type: string
        operation_id:
          type: integer
          format: uint64
          minimum: 0
        whitelisted_recipients:
          description: The account's whitelisted recipients after the update was applied.
          type: array
          items:
            type: string

````

## Related topics

- [Transfers & Withdrawals](/trading/transfers-withdrawals.md)
- [New features](/migrating/new-features.md)
- [Action Signing](/authentication/action-signing.md)
