POST api/SaveGeoLocationInspection
Request Information
URI Parameters
None.
Body Parameters
DashboardModel| Name | Description | Type | Additional information |
|---|---|---|---|
| InspectionID | integer |
None. |
|
| CenterID | integer |
None. |
|
| Longitude | string |
None. |
|
| latitude | string |
None. |
|
| CreatedBy | integer |
None. |
|
| GoogleLink | string |
None. |
|
| IPAddress | string |
None. |
|
| DeviceID | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"InspectionID": 1,
"CenterID": 2,
"Longitude": "sample string 3",
"latitude": "sample string 4",
"CreatedBy": 5,
"GoogleLink": "sample string 6",
"IPAddress": "sample string 7",
"DeviceID": "sample string 8"
}
application/xml, text/xml
Sample:
<DashboardModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TNSDC.API.Models.InspectionApp"> <CenterID>2</CenterID> <CreatedBy>5</CreatedBy> <DeviceID>sample string 8</DeviceID> <GoogleLink>sample string 6</GoogleLink> <IPAddress>sample string 7</IPAddress> <InspectionID>1</InspectionID> <Longitude>sample string 3</Longitude> <latitude>sample string 4</latitude> </DashboardModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |