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

# Transfer Revalue Between Cards

> Transfers a specified amount of revalue from one card to another, identified by their unique identifiers.



## OpenAPI

````yaml /openapi/lynx.yaml post /v1/cards/{FromCardUniqueIdentifier}/revalue/send/{ToCardUniqueIdentifier}
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/cards/{FromCardUniqueIdentifier}/revalue/send/{ToCardUniqueIdentifier}:
    post:
      tags:
        - Cards
      summary: Transfer Revalue Between Cards
      description: >-
        Transfers a specified amount of revalue from one card to another,
        identified by their unique identifiers.
      operationId: transfer-card-revalue
      parameters:
        - name: FromCardUniqueIdentifier
          in: path
          required: true
          description: >-
            The unique identifier of the card from which the revalue will be
            deducted.
          schema:
            type: string
        - name: ToCardUniqueIdentifier
          in: path
          required: true
          description: >-
            The unique identifier of the card to which the revalue will be
            added.
          schema:
            type: string
        - name: CardCredit
          in: query
          description: The amount of revalue to be transferred.
          schema:
            type: number
            format: double
        - name: CreditChangeRemarks
          in: query
          description: Remarks or notes regarding the revalue transfer.
          schema:
            type: string
      responses:
        '200':
          description: Revalue transferred successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardValue'
components:
  schemas:
    CardValue:
      type: object
      description: Represents the credit value associated with a card.
      properties:
        value:
          type: number
          format: double
          description: The credit value of the card.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````