GET realm/zones/<zone_name>
The web method
GET realm/zones/<zone_name> retrieves the definition of a zone by its name.
Example Requests
curl -X GET http://<host>:<port>/api/v1/realm/zones/<zone_name>
Example JSON Representation
{
"last_modified": "2019-03-12T16:44:42.413025708-05:00",
"last_modified_millis": 1552427082413,
"last_modified_by": "anyone",
"name": "z1",
"description": "",
"active": true,
"type": "hub_spoke",
"clusters": [
"c1"
],
"settings": {
"hub": "c1",
"hub-settings": {
"prefetch": 1024,
"message_ttl": "0",
"batch_count": 1000
},
"spoke-settings": {
"prefetch": 1024,
"message_ttl": "0",
"batch_count": 1000
}
}
}