GET /v1/invoices/inbound
const url = 'https://api.asap.cool/v1/invoices/inbound';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.asap.cool/v1/invoices/inbound \ --header 'Authorization: Bearer <token>'Authorizations
Section intitulée « Authorizations »Parameters
Section intitulée « Parameters »Query Parameters
Section intitulée « Query Parameters »Page size, 1..=100 (defaults to 50).
Opaque cursor from a previous page’s meta.next_cursor.
Responses
Section intitulée « Responses »Page of inbound invoices (newest first).
Public projection of an [InboundRecord].
Light by design: the structured CII XML and the integrity digest are not surfaced; the readable PDF is referenced by its object-store key.
object
Size in bytes of the stored object, when known.
RFC3339 creation timestamp.
Invoice currency code (BT-5), when parsed.
Payment due date as ISO YYYY-MM-DD (BT-9), when parsed.
Stable identifier.
RFC3339 import timestamp, when set.
Invoice number extracted from the CII (BT-1), when parsed.
Issue date as ISO YYYY-MM-DD (BT-2), when parsed.
CII parse outcome: 'parsed', 'parse_failed' or 'pending'.
Object-store key of the readable PDF, when stored.
RFC3339 reception timestamp (as reported by the PA), when known.
Seller name extracted from the CII (BT-27), when parsed.
SIREN of the sender, when provided.
Total amount without VAT in cents (BT-109), when parsed.
Grand total with VAT in cents (BT-112), when parsed.
Total VAT amount in cents (BT-110), when parsed.
PA-assigned transmission id.
Example generated
[ { "byte_size": 1, "created_at": "example", "currency": "example", "due_date": "example", "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "imported_at": "example", "invoice_number": "example", "issue_date": "example", "parse_status": "example", "pdf_storage_key": "example", "received_at": "example", "seller_name": "example", "sender_siren": "example", "total_ht": 1, "total_ttc": 1, "total_vat": 1, "transmission_id": "example" }]No active org.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}Missing invoice:read scope.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}Invalid limit or cursor.
Generic error body returned by API handlers when they fail. code is a
stable machine-readable token; message is human-friendly and meant for
surfacing to end users.
object
Stable machine token (e.g. invalid_credentials).
Offending request field for validation errors, when known.
Human-readable message.
Example generated
{ "code": "example", "field": "example", "message": "example"}