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

# Withdraw stablecoins from an org wallet to a nominated address



## OpenAPI

````yaml /api-reference/organizations-openapi.json post /organizations/{orgId}/wallets/{id}/withdraw
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/wallets/{id}/withdraw:
    post:
      tags:
        - Organizations - Wallets
      summary: Withdraw stablecoins from an org wallet to a nominated address
      operationId: OrganizationWalletsController_withdraw
      parameters:
        - name: orgId
          required: true
          in: path
          schema:
            type: string
            example: org-abc123
        - name: id
          required: true
          in: path
          schema:
            example: orw-abc123
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WithdrawOrganizationWalletDto'
      responses:
        '200':
          description: Envelope `{ success, userOpHash, txHash }`
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWalletWithdrawResponseDto'
        '403':
          description: Org wallets not available on this tier
        '404':
          description: Wallet not found
        '422':
          description: Insufficient balance
        '502':
          description: On-chain withdrawal failed
      security:
        - Authorization: []
components:
  schemas:
    WithdrawOrganizationWalletDto:
      type: object
      properties:
        token:
          type: string
          description: Which stablecoin to withdraw
          enum:
            - USDC
            - EURC
          example: USDC
        amount:
          type: string
          description: Amount in the token’s smallest unit (6-decimal atomic units).
          example: '1500000'
        toAddress:
          type: string
          description: Destination 0x address
          example: '0x209693Bc6afc0C5328bA36FaF03C514EF312287C'
      required:
        - token
        - amount
        - toAddress
    OrganizationWalletWithdrawResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        userOpHash:
          type: string
          example: 0xUserOpHash
          description: ERC-4337 user operation hash for the withdrawal
        txHash:
          type: string
          example: 0xTxHash
          nullable: true
          description: On-chain transaction hash, once the user operation is mined
      required:
        - success
        - userOpHash
        - txHash
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Organization Wallets](/docs/solutions/organizations/wallets.md)
- [List an org's active stablecoin wallets](/docs/api-reference/organizations--wallets/list-an-orgs-active-stablecoin-wallets.md)
- [Create an organization stablecoin wallet](/docs/api-reference/organizations--wallets/create-an-organization-stablecoin-wallet.md)
- [Rename an organization wallet](/docs/api-reference/organizations--wallets/rename-an-organization-wallet.md)
- [List the org wallets shared with a group (fund its budgets)](/docs/api-reference/organizations--wallets/list-the-org-wallets-shared-with-a-group-fund-its-budgets.md)
