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

# Get Card Group

> Retrieves the group details associated with a specific card, identified by its card ID.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/cards/{cardId}/cardGroups
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/{cardId}/cardGroups:
    get:
      tags:
        - Cards
      summary: Get Card Group
      description: >-
        Retrieves the group details associated with a specific card, identified
        by its card ID.
      operationId: get-card-group
      parameters:
        - name: cardId
          in: path
          required: true
          description: >-
            The unique identifier of the card for which the group details are
            being retrieved.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Card group details retrieved successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CardGroup'
components:
  schemas:
    CardGroup:
      type: object
      description: >-
        Represents the group details associated with a card, including daily
        limits and update information.
      properties:
        CardGroupEnabledBit:
          type: boolean
          nullable: true
          description: Indicates whether the card group is enabled.
        GroupName:
          type: string
          nullable: true
          description: The name of the card group.
        CardGroupId:
          type: integer
          format: int64
          nullable: true
          description: The unique identifier of the card group.
        GroupDailyLimit:
          type: integer
          format: int32
          nullable: true
          description: The daily limit for the card group.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who last updated the group.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the group was last updated.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````