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