POST api/Status/PostStatusCheck
Request Information
URI Parameters
None.
Body Parameters
StatusPost| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey | string |
None. |
|
| TabletID | string |
None. |
|
| DriverID | integer |
None. |
|
| DriverNumber | string |
None. |
|
| DriverName | string |
None. |
|
| VehicleID | integer |
None. |
|
| VehicleNumber | string |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| Speed | decimal number |
None. |
|
| Direction | decimal number |
None. |
|
| GPSStatus | string |
None. |
|
| TripID | integer |
None. |
|
| TabletVersion | string |
None. |
|
| LinkID | string |
None. |
|
| DriverClockedIn | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"APIKey": "sample string 1",
"TabletID": "sample string 2",
"DriverID": 3,
"DriverNumber": "sample string 4",
"DriverName": "sample string 5",
"VehicleID": 6,
"VehicleNumber": "sample string 7",
"Latitude": 8.1,
"Longitude": 9.1,
"Speed": 10.1,
"Direction": 11.1,
"GPSStatus": "sample string 12",
"TripID": 13,
"TabletVersion": "sample string 14",
"LinkID": "sample string 15",
"DriverClockedIn": 16
}
application/xml, text/xml
Sample:
<StatusModel.StatusPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models"> <APIKey>sample string 1</APIKey> <Direction>11.1</Direction> <DriverClockedIn>16</DriverClockedIn> <DriverID>3</DriverID> <DriverName>sample string 5</DriverName> <DriverNumber>sample string 4</DriverNumber> <GPSStatus>sample string 12</GPSStatus> <Latitude>8.1</Latitude> <LinkID>sample string 15</LinkID> <Longitude>9.1</Longitude> <Speed>10.1</Speed> <TabletID>sample string 2</TabletID> <TabletVersion>sample string 14</TabletVersion> <TripID>13</TripID> <VehicleID>6</VehicleID> <VehicleNumber>sample string 7</VehicleNumber> </StatusModel.StatusPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StatusPostReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| LastGPSMinutes | integer |
None. |
|
| TripCount | integer |
None. |
|
| VehicleStatus | string |
None. |
|
| VehStatusTime | string |
None. |
|
| VehStatusMinutes | integer |
None. |
|
| TimeOnClock | string |
None. |
|
| ClockedInTime | string |
None. |
|
| DayTripCount | integer |
None. |
|
| PendingAutoDispatchTrip | integer |
None. |
|
| PendingAssignedTrip | integer |
None. |
|
| PendingDispatchedTrip | integer |
None. |
|
| WhatMeterButton | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"LastGPSMinutes": 3,
"TripCount": 4,
"VehicleStatus": "sample string 5",
"VehStatusTime": "sample string 6",
"VehStatusMinutes": 7,
"TimeOnClock": "sample string 8",
"ClockedInTime": "sample string 9",
"DayTripCount": 10,
"PendingAutoDispatchTrip": 11,
"PendingAssignedTrip": 12,
"PendingDispatchedTrip": 13,
"WhatMeterButton": 14
}
application/xml, text/xml
Sample:
<StatusModel.StatusPostReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models"> <ClockedInTime>sample string 9</ClockedInTime> <DayTripCount>10</DayTripCount> <LastGPSMinutes>3</LastGPSMinutes> <PendingAssignedTrip>12</PendingAssignedTrip> <PendingAutoDispatchTrip>11</PendingAutoDispatchTrip> <PendingDispatchedTrip>13</PendingDispatchedTrip> <TimeOnClock>sample string 8</TimeOnClock> <TripCount>4</TripCount> <VehStatusMinutes>7</VehStatusMinutes> <VehStatusTime>sample string 6</VehStatusTime> <VehicleStatus>sample string 5</VehicleStatus> <WhatMeterButton>14</WhatMeterButton> <message>sample string 2</message> <status>true</status> </StatusModel.StatusPostReturn>