GET Zones/{id}
Gets a zone by it's ID, represented as ZoneDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the zone. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The zone data.
ZoneDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| ContactEmails | string |
None. |
|
| TerritoryManager | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "7a4c59b1-2333-47af-ae1e-aced91e65aa7",
"IdNetwork": "8ffe30fb-f37f-4661-b5a6-8abd414450b1",
"Code": "sample string 3",
"Name": "sample string 4",
"Description": "sample string 5",
"ContactEmails": "sample string 6",
"TerritoryManager": "sample string 7"
}
application/xml, text/xml
Sample:
<ZoneDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Code>sample string 3</Code> <ContactEmails>sample string 6</ContactEmails> <Description>sample string 5</Description> <Id>7a4c59b1-2333-47af-ae1e-aced91e65aa7</Id> <IdNetwork>8ffe30fb-f37f-4661-b5a6-8abd414450b1</IdNetwork> <Name>sample string 4</Name> <TerritoryManager>sample string 7</TerritoryManager> </ZoneDto>