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

# Card deposit



## OpenAPI

````yaml post /card/{card_id}/deposit
openapi: 3.0.0
info:
  title: FinUp Wallet
  description: API Documentation for Finup
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /card/{card_id}/deposit:
    post:
      tags:
        - Card
      summary: Card deposit
      operationId: CardController_cardDeposit
      parameters:
        - name: card_id
          required: true
          in: path
          description: Mongo ID of the card
          schema: {}
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      requestBody:
        required: true
        description: Body
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CardDepositDto'
      responses:
        '201':
          description: Resource created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      status:
                        type: string
                        example: SUCCESS
                      code:
                        type: integer
                        example: 201
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 401
                  error_message:
                    type: string
                    example: Unauthorized
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 404
                  error_message:
                    type: string
                    example: Card not found
        '418':
          description: I'm a teapot (RFC 2324)
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 418
                  error_message:
                    type: string
                    example: Error with update card limit
        '420':
          description: Insufficient balance
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 420
                  error_message:
                    type: string
                    example: Balance is insufficient
components:
  schemas:
    CardDepositDto:
      type: object
      properties:
        amount:
          type: number
      required:
        - amount

````