GET api/zoneapi/Zones?active={active}&lastUpdate={lastUpdate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
None. |
|
| lastUpdate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ZoneViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| active | boolean |
Required |
|
| id | globally unique identifier |
None. |
|
| name | string |
Required String length: inclusive between 0 and 100 |
Response Formats
application/json, text/json
Sample:
[
{
"active": true,
"id": "17bf2754-ad9a-43c7-802d-a03d348175e2",
"name": "sample string 3"
},
{
"active": true,
"id": "17bf2754-ad9a-43c7-802d-a03d348175e2",
"name": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfzone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
<zone>
<active>true</active>
<id>17bf2754-ad9a-43c7-802d-a03d348175e2</id>
<name>sample string 3</name>
</zone>
<zone>
<active>true</active>
<id>17bf2754-ad9a-43c7-802d-a03d348175e2</id>
<name>sample string 3</name>
</zone>
</ArrayOfzone>