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

> Retrieves a list of all product groups. The response includes details of each product group such as the name, code, and associated actor.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/productGroups
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/productGroups:
    get:
      tags:
        - Product Groups
      summary: Get All Product Groups
      description: >-
        Retrieves a list of all product groups. The response includes details of
        each product group such as the name, code, and associated actor.
      operationId: get-all-product-groups
      responses:
        '200':
          description: A list of all product groups in the system.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProductGroup'
components:
  schemas:
    ProductGroup:
      type: object
      properties:
        ProductGroupRef:
          type: string
          nullable: true
          readOnly: true
          description: A reference identifier for the product group.
        ActorRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference identifier for the actor associated with the product
            group.
        ProductGroupID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the product group.
        ActorID:
          type: integer
          format: int64
          nullable: true
          description: >-
            The unique identifier of the actor associated with the product
            group.
        ProductGroupName:
          type: string
          nullable: true
          description: The name of the product group.
        ProductGroupCode:
          type: integer
          format: int64
          nullable: true
          description: The code associated with the product group.
        ProductGroupSubCode:
          type: integer
          format: int64
          nullable: true
          description: >-
            A sub-code associated with the product group for further
            categorization.
        ProductGroupCreatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who created the product group.
        ProductGroupCreationDate:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the product group was created.
        ProductGroupUpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who last updated the product group.
        ProductGroupLastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the product group was last updated.
        ProductGroupPictureURL:
          type: string
          nullable: true
          description: The URL of the picture associated with the product group.
        ProductGroupCategoryCode:
          type: string
          nullable: true
          description: The category code associated with the product group.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````