> ## 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 Group Roles

> Retrieves a list of roles associated with a specific group identified by `GroupID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/group/{GroupID}/roles
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/group/{GroupID}/roles:
    get:
      tags:
        - Lookups
      summary: Get Group Roles
      description: >-
        Retrieves a list of roles associated with a specific group identified by
        `GroupID`.
      operationId: get-group-roles
      parameters:
        - name: GroupID
          in: path
          required: true
          description: >-
            The unique identifier of the group for which roles are being
            retrieved.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of roles associated with the specified group.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RolesDbEntity'
components:
  schemas:
    RolesDbEntity:
      type: object
      description: >-
        Represents detailed information about a role, including its identifiers,
        name, and status.
      properties:
        RoleID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the role.
        RoleName:
          type: string
          nullable: true
          description: The name of the role.
        UpdatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the role information was last updated.
        CKey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the role for additional identification
            or reference.
        IsActive:
          type: boolean
          nullable: true
          description: Indicates whether the role is currently active.
        IsAdminBit:
          type: boolean
          nullable: true
          description: Indicates whether the role has administrative privileges.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````