Remote Dispatch

POST {{url}}/api/external/machines/remotedispatch

External Machines Remote Dispatch

This endpoint allows you to start a dispatch on a remote machine.

Request Body

  • MachineId (text) - The ID of the machine to which the command will be dispatched.
  • MotorNr (text) - The motor number for the remote command.
  • UserName (text) - The username associated with the command.

Example Request Body

{
  "MachineId": "sampleClientID",
  "MotorNr": 600,
  "UserName": "user@example.com"
}

Response

  • Success (boolean) - Indicates if the remote dispatch command was successful.
  • HttpStatus (number) - The HTTP status code of the response.
  • Response (string) - Additional information or message from the server.

Example Response

{
  "Success": true,
  "HttpStatus": 200,
  "Response": ""
}

RESPONSES

status: OK

{"Success":true,"HttpStatus":200,"Response":""}