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

# Move Devices to Actor ID

> Assigns or moves a list of devices to a specified actor identified by `actorId`. The request body should include an array of device identifiers (e.g., serial numbers).



## OpenAPI

````yaml /openapi/lynx.yaml put /v1/devices/move/{actorId}
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/devices/move/{actorId}:
    put:
      tags:
        - Devices
      summary: Move Devices to Actor ID
      description: >-
        Assigns or moves a list of devices to a specified actor identified by
        `actorId`. The request body should include an array of device
        identifiers (e.g., serial numbers).
      operationId: move-devices-to-actor-id
      parameters:
        - name: actorId
          in: path
          required: true
          description: >-
            The unique identifier of the actor to which the devices will be
            moved.
          schema:
            type: integer
            format: int64
      requestBody:
        description: An array of device identifiers to be moved to the specified actor.
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: The devices were successfully moved to the specified actor.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DevicesMoveResponse'
components:
  schemas:
    DevicesMoveResponse:
      type: object
      description: >-
        Represents the response returned after moving devices to a specified
        actor, including details about the device and its new association.
      properties:
        HW_serial:
          type: string
          nullable: true
          description: The hardware serial number of the device that was moved.
        actor_id:
          type: integer
          format: int64
          description: >-
            The unique identifier of the actor to which the device is now
            associated.
        is_connected:
          type: boolean
          description: >-
            Indicates whether the device is currently connected after being
            moved.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````