POST api/Dashboard/RegisterHandHeldPulse
Request Information
URI Parameters
None.
Body Parameters
HandHeldPulse| Name | Description | Type | Additional information |
|---|---|---|---|
| DeviceID | string |
None. |
|
| SystemNumber | integer |
None. |
|
| Version | integer |
None. |
|
| IP | string |
None. |
|
| CardReader | integer |
None. |
|
| Printer | integer |
None. |
|
| GPS | integer |
None. |
|
| QR | integer |
None. |
|
| DeviceDate | date |
None. |
|
| MiscData | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| ShiftStatus | integer |
None. |
|
| BusID | integer |
None. |
|
| DriverID | integer |
None. |
|
| Route | integer |
None. |
|
| Run | integer |
None. |
|
| Direction | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DeviceID": "sample string 1",
"SystemNumber": 2,
"Version": 3,
"IP": "sample string 4",
"CardReader": 5,
"Printer": 6,
"GPS": 7,
"QR": 8,
"DeviceDate": "2026-08-31T15:33:30.7131952+00:00",
"MiscData": "sample string 10",
"Latitude": 11.1,
"Longitude": 12.1,
"ShiftStatus": 13,
"BusID": 14,
"DriverID": 15,
"Route": 16,
"Run": 17,
"Direction": 18
}
application/xml, text/xml
Sample:
<DashboardController.HandHeldPulse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OperationsAPI.Controllers"> <BusID>14</BusID> <CardReader>5</CardReader> <DeviceDate>2026-08-31T15:33:30.7131952+00:00</DeviceDate> <DeviceID>sample string 1</DeviceID> <Direction>18</Direction> <DriverID>15</DriverID> <GPS>7</GPS> <IP>sample string 4</IP> <Latitude>11.1</Latitude> <Longitude>12.1</Longitude> <MiscData>sample string 10</MiscData> <Printer>6</Printer> <QR>8</QR> <Route>16</Route> <Run>17</Run> <ShiftStatus>13</ShiftStatus> <SystemNumber>2</SystemNumber> <Version>3</Version> </DashboardController.HandHeldPulse>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StandardResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| Code | integer |
None. |
|
| Error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": "sample string 1",
"Code": 2,
"Error": "sample string 3"
}
application/xml, text/xml
Sample:
<StandardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OperationsAPI.Models"> <Code>2</Code> <Error>sample string 3</Error> <Result>sample string 1</Result> </StandardResponse>