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

> Retrieves a list of groups, optionally filtered by `GroupID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/groups
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/groups:
    get:
      tags:
        - Lookups
      summary: Get Groups
      description: Retrieves a list of groups, optionally filtered by `GroupID`.
      operationId: get-groups
      parameters:
        - name: GroupID
          in: query
          description: The unique identifier of the group to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of groups matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroupsDbEntity'
components:
  schemas:
    GroupsDbEntity:
      type: object
      description: >-
        Represents detailed information about a group, including its
        identifiers, name, and management status.
      properties:
        RoleGroupID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the role group.
        RoleGroupName:
          type: string
          nullable: true
          description: The name of the role group.
        UpdatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the group information was last updated.
        ManagedByAdminBit:
          type: boolean
          nullable: true
          description: Indicates whether the group is managed by an administrator.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````