Retrieve a parser
import requests
url = "https://{FUSION HOST}/api/parsers/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Retrieve a parser
deprecated
Fetch a parser by ID. The response is the parser schema in JSON format.
GET
/
parsers
/
{id}
Retrieve a parser
import requests
url = "https://{FUSION HOST}/api/parsers/{id}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Was this page helpful?
⌘I