POST api/City/Update
Request Information
URI Parameters
None.
Body Parameters
CityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
Required String length: inclusive between 0 and 50 |
|
| StateID | integer |
Required |
|
| CountryID | integer |
Required |
|
| IsActive | boolean |
None. |
|
| PostalCode | string |
Required |
|
| Country | string |
None. |
|
| State | string |
None. |
|
| UpdatePermission | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"StateID": 1,
"CountryID": 1,
"IsActive": true,
"PostalCode": "sample string 3",
"Country": "sample string 4",
"State": "sample string 5",
"UpdatePermission": "sample string 6"
}
application/xml, text/xml
Sample:
<CityModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <Country>sample string 4</Country> <CountryID>1</CountryID> <ID>1</ID> <IsActive>true</IsActive> <Name>sample string 2</Name> <PostalCode>sample string 3</PostalCode> <State>sample string 5</State> <StateID>1</StateID> <UpdatePermission>sample string 6</UpdatePermission> </CityModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CityResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| City | CityModel |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"City": {
"ID": 1,
"Name": "sample string 2",
"StateID": 1,
"CountryID": 1,
"IsActive": true,
"PostalCode": "sample string 3",
"Country": "sample string 4",
"State": "sample string 5",
"UpdatePermission": "sample string 6"
},
"ResponseCode": 1,
"ResponseText": "sample string 2"
}
application/xml, text/xml
Sample:
<CityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
<ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode>
<ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText>
<City xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
<d2p1:Country>sample string 4</d2p1:Country>
<d2p1:CountryID>1</d2p1:CountryID>
<d2p1:ID>1</d2p1:ID>
<d2p1:IsActive>true</d2p1:IsActive>
<d2p1:Name>sample string 2</d2p1:Name>
<d2p1:PostalCode>sample string 3</d2p1:PostalCode>
<d2p1:State>sample string 5</d2p1:State>
<d2p1:StateID>1</d2p1:StateID>
<d2p1:UpdatePermission>sample string 6</d2p1:UpdatePermission>
</City>
</CityResponse>