Delete a parser
import requests
url = "https://{FUSION HOST}/api/parsers/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.delete(url, headers=headers)
print(response.text)Delete a parser
deprecated
The request specifies the ID of the parser to delete.
DELETE
/
parsers
/
{id}
Delete a parser
import requests
url = "https://{FUSION HOST}/api/parsers/{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
Optional tag to match.
Path Parameters
The parser ID
Query Parameters
The app to which this object belongs, as app:SomeApp. If the object is not part of this app, the request fails. Other comma-separated contexts in the context parameter are allowed but ignored.
Response
204
The parser was deleted.
Was this page helpful?
⌘I