Delete a query profile
import requests
url = "https://{FUSION HOST}/api/query-profiles/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)Delete a query profile
The request specifies the ID of the query profile to delete.
DELETE
/
query-profiles
/
{id}
Delete a query profile
import requests
url = "https://{FUSION HOST}/api/query-profiles/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)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 query profile ID.
Query Parameters
The app to which this object belongs, as app:SomeApp.
Response
204
No Content
Was this page helpful?
⌘I