Force delete the specific template using templateId
import requests
url = "https://{FUSION_HOST.com}/api/templating/templates/{id}/_force"
response = requests.delete(url)
print(response.text)This response has no body data.Force delete the specific template using templateId
Deletes the specified template (using templateId) immediately, without marking it for deletion, and without any other side effects. This operation does not perform any additional logic such as removing a deleted zone from templates that contained it, or deleting orphaned zones.
CAUTION: Use this only for template deletion. Unexpected errors and behaviors may occur if used in other situations.
DELETE
/
templates
/
{id}
/
_force
Force delete the specific template using templateId
import requests
url = "https://{FUSION_HOST.com}/api/templating/templates/{id}/_force"
response = requests.delete(url)
print(response.text)This response has no body data.Path Parameters
The universal unique identifier (UUID) of the template.
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