Returns a single payables invoice by its external ID. Implementation is required.
Tax note: Tax-related fields (e.g.,
taxon amounts, tax code references) are marked as required but are optional for non-tax / US-based accounts. BravoTran determines the tax mode based on the authenticated account.
Payables invoices contain nested charge lines, each referencing a job and optionally an accrual.
Security
OAuth2.0-Partner or Bearer-Token-Partner
- Mock serverhttps://apidocs.bravotran.com/_mock/openapi/payables-invoices/{external_id}
- https://api.yourserver.comhttps://api.yourserver.com/payables-invoices/{external_id}
- OAuth2.0-Partner
- Bearer-Token-Partner
curl -i -X GET \
'https://apidocs.bravotran.com/_mock/openapi/payables-invoices/{external_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Payables invoice details
Current status of the invoice in the FFS:
draft— entered but not yet posted to the ledgerposted— posted to the ledger
Enum:"draft""posted"
Total invoice amount in the overseas (invoice) currency.
Response
- EntityRef
- null
{ "external_id": "b6d1fdec-81ff-43b9-b422-ae27513047ce", "updated_at": "2025-02-15T03:18:13Z", "creditor": { "external_id": "feaa09da-9551-47f8-b30d-6e303b6ad6d5" }, "invoice_number": "SYD923891", "invoice_date": "2025-02-15", "status": "posted", "overseas_amount": { "currency": "AUD", "pre_tax": 1770, "tax": 20, "total": 1790 }, "charge_lines": [ { … }, { … } ] }