How to retrieve an auction price list as a PDF

An auction price list can be retrieved as a base64 encoded PDF by using the following URL and specifying the auction ID.

 

 Method URL
 GET  https://api.fairwarningsoftware.com/v1.1.1/auction/pricelist/[auction-id]

 

 Status Response
 200

 {
    "filename": <filename>,
    "base64": <base64>
 }

401  {"error":"The API keys provided are invalid."}
403  {"error":"API keys are missing."}
500  {"error": <custom error>}

 

 Field  Type Description
filename string The name of the PDF file.
base64 string The PDF file as a base64 encoded string.