- In your Dashboard, go to Operations > Machines.
- Use the search function to filter through the list of machines.
- Select the desired machine from the list.
- Open the General Information tab.

Lynx API Methods
The Lynx API provides various methods to retrieve all this information, allowing you to programmatically access specific machine details, groups, statuses, and configurations. These are the available methods discussed on this page:Get Specific Machine Basic Info by MachineID
GET
Get Specific Machine Basic Info by Device
GET
Get Specific Machine Basic Info by VPOS
GET
Get All Machine Basic Info
GET
Retrieve a Machine by MachineID
Using the Get Specific Machine Basic Info you can get the details of a machine with a specific MachineID. See an example request in the code block below:
MachineID in the path param of the request.
Retrieve a Machine by DeviceSerialNumber
Using the Get Specific Machine Basic Info by Device endpoint, you can retrieve the details of a machine associated with a specific DeviceSerialNumber. See an example request in the code block below:
Retrieve a Machine by VPOSSerial
Using the Get Specific Machine Basic Info by VPOS endpoint, you can retrieve the details of a machine associated with a specific VPOSSerial. See an example request in the code block below:
VPOSSerial in the path parameter of the request to fetch the machine details associated with that VPOS device.
Retrieve All Machine Basic Info
Using the Get All Machine Basic Info endpoint, you can retrieve basic information for all machines, with optional filtering by various parameters. See an example request in the code block below:Request
| Parameter | Type | Description |
|---|---|---|
| ResultsLimit | int32 | The maximum number of results to return; it is set to 100 by default. |
| ResultsOffset | int32 | The number of results to skip before starting to return results; set to 0 by default. |
| ActorID | int64 | Filter results by the actor ID associated with the machine. |
| OperatorIdentifier | string | Filter results by the operator identifier. |
| MachineID | int64 | Filter results by the machine ID. |
| MachineSerialNumber | string | Filter results by the machine’s serial number. |
| MachineName | string | Filter results by the machine’s name. |
| DeviceID | int32 | Filter results by the device ID associated with the machine. |
| VposID | int64 | Filter results by the VPOS ID associated with the machine. |