GET
/
Bill
/
attachedFileFromBill
/
{idBill}
/
{filename}
curl --request GET \
  --url https://api-sandbox.payabli.com/api/Bill/attachedFileFromBill/{idBill}/{filename} \
  --header 'requestToken: <api-key>'
This response does not have an example.

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Path Parameters

idBill
integer
required

Payabli ID for the bill. Get this ID by querying /api/Query/bills/ for the entrypoint or the organization.

Example:

285

filename
string
required

Filename in internal storage associated with the bill.

Query Parameters

returnObject
boolean
default:false

When true, the request returns the file content as a Base64-encoded string.

Response

200
application/octet-stream
Success

The response is of type file.

Was this page helpful?