v1

latestOpenAPI 3.1.02026-07-24233206489.1 KB
Invoice Imports

List the import's rows for review

Returns every parsed row (or the subset matching status) plus the batch tally. Imports are capped at 1000 rows so the whole set fits one response; there is no pagination.

get/v1/invoices/imports/{id}/rows

Path parameters

idstring required

Import batch ID

Query parameters

status'valid' | 'error' | 'pending'

Filter rows to one outcome

Response

OK

has_moreboolean

Example response

{
  "data": {
    "data": [
      {
        "error_reason": "customer_email is required",
        "id": "impr_abc123",
        "row_number": 2
      }
    ],
    "error_rows": 12,
    "ready_rows": 248,
    "total_rows": 260
  }
}