Delete a custom rule type
import requests
url = "https://{FUSION HOST}/api/custom-rule-types/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)"<string>"Delete a custom rule type
The request specifies the ID of the custom rule type to delete.
DELETE
/
custom-rule-types
/
{id}
Delete a custom rule type
import requests
url = "https://{FUSION HOST}/api/custom-rule-types/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)"<string>"Authorizations
Basic authAPI key
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Headers
An optional tag to match.
Path Parameters
The custom rule type ID.
Query Parameters
The app to which this object belongs, as app:SomeApp.
Response
200 - application/json
OK
The response is of type string.
Was this page helpful?
⌘I