POST api/zones/create
Request Information
URI Parameters
None.
Body Parameters
ZoneData| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| ClientCount | integer |
None. |
|
| ID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"ClientCount": 1,
"ID": 1
}
text/xml
Sample:
<ZoneData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data"> <ID>1</ID> <ClientCount>1</ClientCount> <Name>sample string 1</Name> </ZoneData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ZoneData| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| ClientCount | integer |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"ClientCount": 1,
"ID": 1
}
text/xml
Sample:
<ZoneData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data"> <ID>1</ID> <ClientCount>1</ClientCount> <Name>sample string 1</Name> </ZoneData>