Retrieve the JSON schema
import requests
url = "https://{FUSION HOST}/api/parsers/_schema"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Retrieve the JSON schema
deprecated
Get the JSON configuration schema for parsers.
GET
/
parsers
/
_schema
Retrieve the JSON schema
import requests
url = "https://{FUSION HOST}/api/parsers/_schema"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text){}Was this page helpful?
⌘I