Python
import requests url = "https://{FUSION HOST}/api/parsers" headers = {"Authorization": "Basic <encoded-value>"} response = requests.get(url, headers=headers) print(response.text)
[ {} ]
Use this endpoint to discover existing parsers and their IDs and attributes. Optionally, you can filter the list.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
OK
Was this page helpful?