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

# Get Card by ID

> Retrieves card details associated with a specific unique identifier.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/cards/uniqueIdentifier/{CardUniqueIdentifier}
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/uniqueIdentifier/{CardUniqueIdentifier}:
    get:
      tags:
        - Cards
      summary: Get Card by ID
      description: Retrieves card details associated with a specific unique identifier.
      operationId: get-cards-by-unique-identifier
      parameters:
        - name: CardUniqueIdentifier
          in: path
          required: true
          description: The unique identifier of the card to be retrieved.
          schema:
            type: string
      responses:
        '200':
          description: Card details retrieved 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.

````