POST api/Location/Updateboundarylocation
Request Information
URI Parameters
None.
Body Parameters
LocationEnity| Name | Description | Type | Additional information |
|---|---|---|---|
| LID | integer |
None. |
|
| LName | string |
None. |
|
| IsActive | boolean |
None. |
|
| LLat | decimal number |
None. |
|
| LLong | decimal number |
None. |
|
| CityID | integer |
None. |
|
| CityName | string |
None. |
|
| Lboundary | string |
None. |
|
| bondarycenterLat | decimal number |
None. |
|
| bondarycenterLong | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"LID": 1,
"LName": "sample string 2",
"IsActive": true,
"LLat": 4.0,
"LLong": 5.0,
"CityID": 6,
"CityName": "sample string 7",
"Lboundary": "sample string 8",
"bondarycenterLat": 9.0,
"bondarycenterLong": 10.0
}
application/xml, text/xml
Sample:
<LocationEnity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities"> <CityID>6</CityID> <CityName>sample string 7</CityName> <IsActive>true</IsActive> <LID>1</LID> <LLat>4</LLat> <LLong>5</LLong> <LName>sample string 2</LName> <Lboundary>sample string 8</Lboundary> <bondarycenterLat>9</bondarycenterLat> <bondarycenterLong>10</bondarycenterLong> </LocationEnity>
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. |