POST api/Zone/UpdateZone
Request Information
URI Parameters
None.
Body Parameters
ZoneModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Zone_Id | integer |
None. |
|
| ZoneCode | string |
None. |
|
| ZoneName | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreationDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| ModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Zone_Id": 1,
"ZoneCode": "sample string 2",
"ZoneName": "sample string 3",
"IsActive": true,
"CreationDate": "2025-12-01T04:31:37.1444231+05:30",
"ModifiedDate": "2025-12-01T04:31:37.1444231+05:30",
"CreatedBy": 6,
"ModifiedBy": 1
}
application/xml, text/xml
Sample:
<ZoneModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjectBLL.CustomModel"> <CreatedBy>6</CreatedBy> <CreationDate>2025-12-01T04:31:37.1444231+05:30</CreationDate> <IsActive>true</IsActive> <ModifiedBy>1</ModifiedBy> <ModifiedDate>2025-12-01T04:31:37.1444231+05:30</ModifiedDate> <ZoneCode>sample string 2</ZoneCode> <ZoneName>sample string 3</ZoneName> <Zone_Id>1</Zone_Id> </ZoneModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>