GET api/LiveData/AllMachines?date={date}&loginToken={loginToken}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| date | string |
Required |
|
| loginToken | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MachineLocationData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FK_CustMachineId | integer |
None. |
|
| FK_MachineProfileId | integer |
None. |
|
| FK_CustProjectId | integer |
None. |
|
| FK_CustJobId | integer |
None. |
|
| Name | string |
None. |
|
| MIPAlias | string |
None. |
|
| IsConnected | boolean |
None. |
|
| LastConnected | string |
None. |
|
| Speed | decimal number |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Altitude | decimal number |
None. |
|
| GPSQuality | integer |
None. |
|
| Lift | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"FK_CustMachineId": 2,
"FK_MachineProfileId": 3,
"FK_CustProjectId": 4,
"FK_CustJobId": 5,
"Name": "sample string 6",
"MIPAlias": "sample string 7",
"IsConnected": true,
"LastConnected": "2025-12-13T09:11:13",
"Speed": 10.1,
"Latitude": 11.1,
"Longitude": 12.1,
"Altitude": 13.1,
"GPSQuality": 14,
"Lift": 15
},
{
"Id": 1,
"FK_CustMachineId": 2,
"FK_MachineProfileId": 3,
"FK_CustProjectId": 4,
"FK_CustJobId": 5,
"Name": "sample string 6",
"MIPAlias": "sample string 7",
"IsConnected": true,
"LastConnected": "2025-12-13T09:11:13",
"Speed": 10.1,
"Latitude": 11.1,
"Longitude": 12.1,
"Altitude": 13.1,
"GPSQuality": 14,
"Lift": 15
}
]
application/xml, text/xml
Sample:
<ArrayOfMachineLocationData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickType">
<MachineLocationData>
<Altitude>13.1</Altitude>
<FK_CustJobId>5</FK_CustJobId>
<FK_CustMachineId>2</FK_CustMachineId>
<FK_CustProjectId>4</FK_CustProjectId>
<FK_MachineProfileId>3</FK_MachineProfileId>
<GPSQuality>14</GPSQuality>
<Id>1</Id>
<IsConnected>true</IsConnected>
<LastConnected>2025-12-13T09:11:13</LastConnected>
<Latitude>11.1</Latitude>
<Lift>15</Lift>
<Longitude>12.1</Longitude>
<MIPAlias>sample string 7</MIPAlias>
<Name>sample string 6</Name>
<Speed>10.1</Speed>
</MachineLocationData>
<MachineLocationData>
<Altitude>13.1</Altitude>
<FK_CustJobId>5</FK_CustJobId>
<FK_CustMachineId>2</FK_CustMachineId>
<FK_CustProjectId>4</FK_CustProjectId>
<FK_MachineProfileId>3</FK_MachineProfileId>
<GPSQuality>14</GPSQuality>
<Id>1</Id>
<IsConnected>true</IsConnected>
<LastConnected>2025-12-13T09:11:13</LastConnected>
<Latitude>11.1</Latitude>
<Lift>15</Lift>
<Longitude>12.1</Longitude>
<MIPAlias>sample string 7</MIPAlias>
<Name>sample string 6</Name>
<Speed>10.1</Speed>
</MachineLocationData>
</ArrayOfMachineLocationData>