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

# Reload Paywint Card

> Reloads (top-ups) an issued Paywint Card by deducting funds directly from the issuer’s Paywint wallet balance.

The provided `payee_card_id` identifies the issued card, and the specified `amount` is debited from the wallet's available balance and applied to the card through the Paywint recharge flow.

The wallet must have sufficient available balance for the reload to succeed.



## OpenAPI

````yaml POST /api/user-api/card/payee/pw-card/reload
openapi: 3.1.0
info:
  title: paywint
  version: 0.1.0
servers:
  - url: https://api.sandbox.paywint.com
  - url: https://api.paywint.com
security: []
paths:
  /api/user-api/card/payee/pw-card/reload:
    post:
      tags:
        - Developer API card
      summary: Reload an issued Paywint Card
      description: >-
        Reloads (top-ups) an issued Paywint Card by deducting funds directly
        from the issuer’s Paywint wallet balance.


        The provided `payee_card_id` identifies the issued card, and the
        specified `amount` is debited from the wallet's available balance and
        applied to the card through the Paywint recharge flow.


        The wallet must have sufficient available balance for the reload to
        succeed.
      operationId: reload_issued_paywint_card_api_user_api_card_payee_pw_card_reload_post
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          schema:
            type: string
            description: >-
              Your API Key (UUID format). Required to identify and authorize
              each request
            title: X-Api-Key
          description: >-
            Your API Key (UUID format). Required to identify and authorize each
            request
        - name: X-Api-Secret
          in: header
          required: true
          schema:
            type: string
            description: >-
              Secret associated with your API Key. Used for authenticating
              requests. Keep this secure.
            title: X-Api-Secret
          description: >-
            Secret associated with your API Key. Used for authenticating
            requests. Keep this secure.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalPaywintGiftCardReloadRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/CommonResponse_ExternalGiftCardReloadTransactionRead_
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ExternalPaywintGiftCardReloadRequest:
      properties:
        payee_card_id:
          type: string
          format: uuid
          title: Payee Card Id
          description: >-
            Unique identifier of the issued Paywint Card that needs to be
            reloaded.
          example: d9f1a8e7-2f9b-4f39-bc5d-98e01a123456
        amount:
          type: number
          exclusiveMinimum: 0
          title: Amount
          description: >-
            Amount in USD to add to the issued Paywint Card. This amount will be
            deducted directly from the issuer’s Paywint wallet balance.
          example: 50
        memo:
          anyOf:
            - type: string
            - type: 'null'
          title: Memo
          description: >-
            Optional note to associate with the reload transaction. If provided,
            it will appear in the transaction details.
          example: Quarterly bonus top-up
      type: object
      required:
        - payee_card_id
        - amount
      title: ExternalPaywintGiftCardReloadRequest
      example:
        amount: 50
        memo: Quarterly bonus top-up
        payee_card_id: d9f1a8e7-2f9b-4f39-bc5d-98e01a123456
    CommonResponse_ExternalGiftCardReloadTransactionRead_:
      properties:
        success:
          type: boolean
          title: Success
          description: Indicates whether the request was processed successfully.
          default: true
          example: true
        message:
          type: string
          title: Message
          description: >-
            A short, human-readable message describing the result of the
            request.
          default: Success
          example: Operation completed.
        data:
          anyOf:
            - $ref: '#/components/schemas/ExternalGiftCardReloadTransactionRead'
            - type: 'null'
          description: The main response payload, if applicable
        queryGeneratedTime:
          anyOf:
            - type: number
            - type: 'null'
          title: Querygeneratedtime
          description: >-
            The Unix timestamp (in seconds) indicating when the response was
            generated.
          default: 1778161546.973489
          example: 1718006400
      type: object
      title: CommonResponse[ExternalGiftCardReloadTransactionRead]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ExternalGiftCardReloadTransactionRead:
      properties:
        payment_id:
          type: string
          format: uuid
          title: Payment Id
          description: Unique payment identifier for this Paywint Card reload.
          example: 1e5b20d4-58b5-4f2d-a9e5-6c91f0a1c789
        reference_id:
          type: integer
          title: Reference Id
          description: >-
            Reference ID for this transaction. This should be stored safely for
            future reconciliation and support.
          example: 10472
        amount:
          type: number
          title: Amount
          description: >-
            Amount in USD that was successfully added to the issued Paywint
            Card.
          example: 50
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Optional note associated with the reload transaction.
          example: Quarterly bonus top-up
        status:
          $ref: '#/components/schemas/PWCardTransactionStatus'
          description: Current status of the reload transaction.
          example: success
      type: object
      required:
        - payment_id
        - reference_id
        - amount
        - status
      title: ExternalGiftCardReloadTransactionRead
      example:
        amount: 50
        description: Quarterly bonus top-up
        payment_id: 1e5b20d4-58b5-4f2d-a9e5-6c91f0a1c789
        reference_id: 10472
        status: success
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    PWCardTransactionStatus:
      type: string
      enum:
        - fetching
        - fetch_failed
        - initiated
        - pending
        - cancelled
        - success
        - failed
        - refunded
        - reversed
        - rejected
      title: PWCardTransactionStatus

````