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