Line items in an invoice represent transactions captured in that invoice. Create and maintain invoice lines from the owning invoice object.
Returns a collection with a key, ID, and link for each invoice line item. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "1",
- "href": "/objects/accounts-receivable/invoice-line/1"
}, - {
- "key": "3",
- "id": "3",
- "href": "/objects/accounts-receivable/invoice-line/3"
}, - {
- "key": "19",
- "id": "19",
- "href": "/objects/accounts-receivable/invoice-line/19"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Returns detailed information for a specified invoice line item.
key required | string System-assigned unique key for the invoice line item. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "id": "2702",
- "key": "2702",
- "invoice": {
- "id": "292",
- "key": "292",
- "href": "/objects/accounts-receivable/invoice/292"
}, - "glAccount": {
- "key": "254",
- "id": "6103",
- "name": "Bonuses",
- "href": "/objects/general-ledger/account/254"
}, - "overrideOffsetGLAccount": {
- "key": "36",
- "id": "1200",
- "name": "Accounts Receivable",
- "href": "/objects/general-ledger/account/36"
}, - "accountLabel": {
- "name": "Bonuses",
- "key": "35",
- "id": "Bonuses",
- "href": "/objects/accounts-receivable/account-label/35"
}, - "createdDate": "2024-09-24",
- "baseAmount": "400.00",
- "txnAmount": "400.00",
- "dimensions": {
- "department": {
- "key": null,
- "id": null,
- "name": null
}, - "location": {
- "key": "4",
- "id": "4",
- "name": "Australia",
- "href": "/objects/company-config/location/4"
}, - "project": {
- "key": null,
- "id": null,
- "name": null
}, - "customer": {
- "key": null,
- "id": null,
- "name": null
}, - "vendor": {
- "key": null,
- "id": null,
- "name": null
}, - "employee": {
- "key": null,
- "id": null,
- "name": null
}, - "item": {
- "key": null,
- "id": null,
- "name": null
}, - "class": {
- "key": null,
- "id": null,
- "name": null
}, - "warehouse": {
- "key": null,
- "id": null,
- "name": null
}
}, - "baseLocation": {
- "name": "Australia",
- "key": "4",
- "href": "/objects/company-config/location/4"
}, - "memo": "line 1",
- "currency": {
- "exchangeRate": {
- "date": null,
- "typeId": null,
- "rate": 1
}, - "txnCurrency": "AUD",
- "baseCurrency": "AUD"
}, - "allocation": {
- "key": null,
- "id": null
}, - "lineNumber": 1,
- "paymentInformation": {
- "totalBaseAmountPaid": "0.00",
- "totalTxnAmountPaid": "0.00",
- "totalBaseAmountSelectedForPayment": "0.00",
- "totalTxnAmountSelectedForPayment": "0.00"
}, - "isSubtotal": null,
- "audit": {
- "createdDateTime": "2024-09-24T14:18:20Z",
- "modifiedDateTime": "2024-09-24T14:18:20Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "taxEntries": [
- {
- "id": "2704",
- "key": "2704",
- "invoiceLine": {
- "id": "2702",
- "key": "2702",
- "href": "/objects/accounts-receivable/invoice-line/2702"
}, - "baseTaxAmount": "40.00",
- "txnTaxAmount": "40.00",
- "taxRate": 10,
- "orderEntryTaxDetail": {
- "id": "G1 Goods and Services Tax",
- "key": "20",
- "href": "/objects/tax/order-entry-tax-detail/20"
}, - "href": "/objects/accounts-receivable/invoice-tax-entry/2704"
}
], - "href": "/objects/accounts-receivable/invoice-line/2702"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}