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

> Retrieves a list of all actor types, optionally filtered by a specific `ActorTypeID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/actorTypes
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/actorTypes:
    get:
      tags:
        - Lookups
      summary: Get All Actor Types
      description: >-
        Retrieves a list of all actor types, optionally filtered by a specific
        `ActorTypeID`.
      operationId: get-actor-types
      parameters:
        - name: ActorTypeID
          in: query
          description: The unique identifier of the actor type to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of actor types matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ActorType'
components:
  schemas:
    ActorType:
      type: object
      description: >-
        Represents the details of an actor type, including its identifier, name,
        and additional metadata.
      properties:
        ActorTypeID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the actor type.
        ActorTypeName:
          type: string
          nullable: true
          description: The name of the actor type.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the actor type was last updated.
        DefaultBit:
          type: boolean
          nullable: true
          description: Indicates whether this actor type is the default type.
        CKey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the actor type for additional
            identification or reference.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````