POST api/EngineerGPS/PostEngineerGPS?userId={userId}&password={password}&version={version}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| password | string |
Required |
|
| version | string |
Required |
Body Parameters
Engineer_GPS_Location| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| EngineerID | integer |
None. |
|
| DateTime | date |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"EngineerID": 2,
"DateTime": "2026-09-01T18:56:53.4026313+01:00",
"Latitude": 4.0,
"Longitude": 5.0
}
application/xml, text/xml
Sample:
<Engineer_GPS_Location xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models"> <DateTime>2026-09-01T18:56:53.4026313+01:00</DateTime> <EngineerID>2</EngineerID> <ID>1</ID> <Latitude>4</Latitude> <Longitude>5</Longitude> </Engineer_GPS_Location>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.