_retrieve-bills
Call our List bills endpoint to retrieve the full list of a company's existing bills.
You can also Download bill attachments associated with a given bill, such as a PDF copy of the accounts payable invoice issued by the supplier.
- TypeScript
- Python
- C#
- Go
const billsResponse = await payablesClient.bills.list({
companyId: companyId,
query: "supplierRef.supplierName=acme",
});
bills_request = operations.ListBillsRequest(
company_id=company_id,
query='supplierRef.supplierName=acme'
)
bills_response = payables_client.bills.list(bills_request)
var billsResponse = await payablesClient.Bills.ListAsync(new ListBillsRequest() {
CompanyId = companyId,
Query = "supplierRef.supplierName=acme"
});
ctx := context.Background()
billsResponse, err := payablesClient.Bills.List(ctx, operations.ListBillsRequest{
CompanyID: companyID,
Query: "supplierRef.supplierName=acme"
})