| data | Object | Yes | Job object containing id, type, and attributes. |
| data.id | String | Yes | The job's unique UUID. |
| data.type | String | Yes | The job type (api_job_result). |
| data.attributes | Object | Yes | Job attributes, including status and result. |
| data.attributes.status | ENUM | Yes | Current status of the asynchronous job. Allowed values: running, failed, queued, success. |
| data.attributes.result | Object Array | No | Parsed invoice results. Present when the job status is success. |
| data.attributes.result[].buyer | Object | No | Buyer details extracted from the invoice. |
| data.attributes.result[].buyer.name | String | No | Buyer name. |
| data.attributes.result[].buyer.billing_address | Object | No | Buyer billing address. |
| data.attributes.result[].buyer.billing_address.city | String | No | City. |
| data.attributes.result[].buyer.billing_address.state | String | No | State. |
| data.attributes.result[].buyer.billing_address.country | String | No | Country. |
| data.attributes.result[].buyer.billing_address.postcode | String | No | Postcode. |
| data.attributes.result[].buyer.billing_address.street_line_1 | String | No | Street address line 1. |
| data.attributes.result[].seller | Object | No | Seller details extracted from the invoice. |
| data.attributes.result[].seller.name | String | No | Seller name. |
| data.attributes.result[].seller.vat_id | String | No | Seller VAT ID. |
| data.attributes.result[].seller.address | Object | No | Seller address. |
| data.attributes.result[].seller.address.city | String | No | City. |
| data.attributes.result[].seller.address.state | String | No | State. |
| data.attributes.result[].seller.address.country | String | No | Country. |
| data.attributes.result[].seller.address.postcode | String | No | Postcode. |
| data.attributes.result[].seller.address.street_line_1 | String | No | Street address line 1. |
| data.attributes.result[].invoice | Object | No | Invoice metadata. |
| data.attributes.result[].invoice.currency | String | No | Invoice currency. |
| data.attributes.result[].invoice.issue_date | String | No | Invoice issue date. |
| data.attributes.result[].invoice.invoice_number | String | No | Invoice number. |
| data.attributes.result[].document | Object | No | Document classification data. |
| data.attributes.result[].document.is_invoice | Boolean | No | Whether the document was identified as an invoice. |
| data.attributes.result[].financials | Object | No | Invoice totals. |
| data.attributes.result[].financials.subtotal | Number | No | Subtotal amount. |
| data.attributes.result[].financials.total_payable | Number | No | Total payable amount. |
| data.attributes.result[].financials.total_tax_amount | Number | No | Total tax amount. |
| data.attributes.result[].line_items | Object Array | No | Line items extracted from the invoice. |
| data.attributes.result[].line_items[].quantity | Number | No | Quantity. |
| data.attributes.result[].line_items[].subtotal | Number | No | Line item subtotal. |
| data.attributes.result[].line_items[].unit_price | Number | No | Unit price. |
| data.attributes.result[].line_items[].description | String | No | Line item description. |