> ## 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 Actor Groups by ActorID

> Retrieves all actor groups associated with a specific actor, identified by `ActorID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/actors/{ActorID}/roleGroups
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/actors/{ActorID}/roleGroups:
    get:
      tags:
        - Actors
      summary: Get All Actor Groups by ActorID
      description: >-
        Retrieves all actor groups associated with a specific actor, identified
        by `ActorID`.
      operationId: get-all-actor-groups-for-actor
      parameters:
        - name: ActorID
          in: path
          required: true
          description: >-
            The unique identifier of the actor for whom the role groups are
            being retrieved.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: >-
            A list of actor groups associated with the actor was retrieved
            successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ActorGroupResponseDTO'
components:
  schemas:
    ActorGroupResponseDTO:
      type: object
      description: >-
        Represents the response details of an actor group associated with an
        actor.
      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 role group was last updated.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````