v1

latestOpenAPI 3.0.0Proprietary2026-07-26130282259.8 KB
jobs

Get Job Invoices

Use this endpoint to get a list of invoices for the specified job.

get/jobs/{jobId}/invoices

Path parameters

jobIdstring uuid required

The job's unique identifier

Query parameters

pageSizeinteger

Controls how many items are returned per page in paginated responses.

  • Default: 25 items per page if not specified
  • Minimum: 1 item per page
  • Use with pageStartIndex for navigating through large result sets
pageStartIndexinteger

The index of the page to return

sortOrder'Ascending' | 'Descending'

return jobs in Ascending (default) or Descending order

Response

OK

countinteger

The total number of items available across all pages. Use this to calculate the total number of pages available.

pageSizeinteger

The number of items per page in this response. This reflects either your requested page size or the default value.

pageStartIndexinteger

The starting index of this page of results. Use with pageSize to track your position in the overall result set.

Example response

{
  "items": [
    {
      "jobId": "01a7cfc1-2231-4589-9657-7f3004c06bd3",
      "invoiceNumber": "10-1",
      "invoiceDate": "2015-07-28T17:48:59Z",
      "dueDate": "2015-07-28T17:48:59Z",
      "currentInvoiceState": "Paid",
      "createdDate": "2015-07-28T17:48:59Z",
      "sections": [
        {
          "id": "43bc3071-8701-4514-92d2-0ab6934bbacc",
          "invoiceWorksheetSectionType": "Invoice",
          "items": [
            {
              "id": "79bd84ff-a16a-4358-b1de-be5071c0f19c",
              "parentItemId": "79bd84ff-a16a-4358-b1de-be5071c0f19c",
              "referenceId": "cc16cfe4-28d9-4fe4-b281-0e24fc0b4d83",
              "referenceType": "SKU",
              "tradeId": "e8ea8f4c-14ca-4bdf-8fe6-882410316757"
            }
          ]
        }
      ]
    }
  ]
}