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

# Withdraw funds from card



## OpenAPI

````yaml /openapi.json post /card/{card_id}/withdraw
openapi: 3.1.0
info:
  title: Finup Public API
  version: 1.0.0
  description: >-
    Client-facing Finup API reference generated from current public endpoint
    metadata.
servers:
  - url: https://api.finup.io/backend
    description: Production
security: []
tags:
  - name: Accounts
    description: Current account, account setup, and account capabilities.
  - name: Transactions
    description: Account transaction lists and aggregates.
  - name: Cards
    description: Card issuing, listing, funding, and status changes.
paths:
  /card/{card_id}/withdraw:
    post:
      tags:
        - Cards
      summary: Withdraw funds from card
      parameters:
        - name: card_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CardWithdrawRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                required:
                  - result
                properties:
                  result:
                    $ref: '#/components/schemas/CardOperation'
        '401':
          description: Missing or invalid credentials
        '403':
          description: Insufficient permission for this operation
        '404':
          description: Resource not found
      security:
        - apiKeyAuth: []
components:
  schemas:
    CardWithdrawRequest:
      type: object
      required:
        - amount
      properties:
        amount:
          type: number
          example: 100
    CardOperation:
      type: object
      properties:
        status:
          type: string
          example: SUCCESS
        code:
          type: integer
          example: 201
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````