> ## Documentation Index
> Fetch the complete documentation index at: https://nayax-44d6e37b-docs-marshall-faq-redistribution.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Card Details by Display Number

> Updates the details of a card identified by the card's display number.



## OpenAPI

````yaml /openapi/lynx.yaml put /v1/cards/{CardDisplayNumber}
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/{CardDisplayNumber}:
    put:
      tags:
        - Cards
      summary: Update Card Details by Display Number
      description: Updates the details of a card identified by the card's display number.
      operationId: update-card-by-display-number
      parameters:
        - name: CardDisplayNumber
          in: path
          required: true
          description: The display number of the card to be updated.
          schema:
            type: string
      requestBody:
        required: true
        description: The card details to be updated.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cards'
      responses:
        '200':
          description: Card details updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Cards'
components:
  schemas:
    Cards:
      type: object
      description: >-
        Represents the details of a card, including its attributes, status, and
        associated actor information.
      properties:
        MobileNumber:
          type: string
          nullable: true
          description: The mobile number associated with the card.
        CardID:
          type: integer
          format: int64
          nullable: true
          description: The unique identifier of the card.
        ActorID:
          type: integer
          format: int64
          nullable: true
          description: The unique identifier of the actor associated with the card.
        CardUniqueIdentifier:
          type: string
          nullable: true
          description: The unique identifier assigned to the card.
        CardDisplayNumber:
          type: string
          nullable: true
          description: The display number of the card.
        CardHolderName:
          type: string
          nullable: true
          description: The name of the cardholder.
        CardStatus:
          type: integer
          format: int32
          nullable: true
          description: The current status of the card.
        CardType:
          type: integer
          format: int32
          nullable: true
          description: The type identifier of the card.
        CardUserIdentity:
          type: string
          nullable: true
          description: The unique identity or user ID associated with the card.
        UpdatedDt:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the card was last updated.
        CreatedDt:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the card was created.
        CreatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who created the card.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who last updated the card.
        CountryID:
          type: integer
          format: int32
          nullable: true
          description: The identifier of the country associated with the card.
        Email:
          type: string
          nullable: true
          description: The email address associated with the card.
        CardPhysicalType:
          type: integer
          format: int32
          nullable: true
          description: The physical type identifier of the card.
        MemberType:
          type: integer
          format: int32
          nullable: true
          description: The membership type identifier associated with the card.
        CardActivationDate:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the card becomes active.
        CardExpirationDate:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the card expires.
        CardImageUrl:
          type: string
          nullable: true
          description: The URL of the image associated with the card.
        CardNote:
          type: string
          nullable: true
          description: Any additional notes associated with the card.
        wd_limits_money:
          type: string
          nullable: true
          description: The monetary limits applied to the card on specific weekdays.
        wd_limits_trans:
          type: string
          nullable: true
          description: The transaction limits applied to the card on specific weekdays.
        use_wd_limit:
          type: boolean
          nullable: true
          description: Indicates whether the weekday limits are enabled for the card.
        CardExternalApplicationUserID:
          type: string
          nullable: true
          description: The external application user ID associated with the card.
        Refs:
          type: object
          nullable: true
          description: Additional references or metadata associated with the card.
          additionalProperties:
            type: string
            nullable: true
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````