Delete a zone by using zoneId
import requests
url = "https://{FUSION_HOST.com}/api/templating/zones/{id}"
response = requests.delete(url)
print(response.text)This response has no body data.Delete a zone by using zoneId
Delete the zone by zoneId. When the zone is successfully deleted, the operation removes the zone from any templates that contain it.
If the zone removal fails, a 500 error message is generated.
DELETE
/
zones
/
{id}
Delete a zone by using zoneId
import requests
url = "https://{FUSION_HOST.com}/api/templating/zones/{id}"
response = requests.delete(url)
print(response.text)This response has no body data.Path Parameters
The universal unique identifier (UUID) of the zone.
Query Parameters
The context parameter retrieves templates for the specified application. The parameter format is app:your-app-name. Only the first application listed in the context is displayed even if a comma-delimited list is entered in the parameter.
Example:
"app:your-app-name"
Response
Was this page helpful?
⌘I