Line items in a recurring invoice represent transactions captured in that recurring invoice. Create and maintain recurring invoice lines from the owning recurring invoice object.
Returns a collection with a key, ID, and link for each recurring invoice line. 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": "9",
- "id": "9",
- "href": "/objects/accounts-receivable/recurring-invoice-line/9"
}, - {
- "key": "10",
- "id": "10",
- "href": "/objects/accounts-receivable/recurring-invoice-line/10"
}, - {
- "key": "13",
- "id": "13",
- "href": "/objects/accounts-receivable/recurring-invoice-line/13"
}, - {
- "key": "14",
- "id": "14",
- "href": "/objects/accounts-receivable/recurring-invoice-line/14"
}
], - "ia::meta": {
- "totalCount": 4,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified line item in a recurring invoice.
key required | string System-assigned key for the recurring invoice line. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "id": "51",
- "key": "51",
- "recurringInvoice": {
- "id": "24",
- "key": "24",
- "href": "/objects/accounts-receivable/recurring-invoice/24"
}, - "offsetGLAccount": {
- "key": null
}, - "description": "line 1",
- "glAccount": {
- "key": "254",
- "id": "6103",
- "name": "Bonuses",
- "href": "/objects/general-ledger/account/254"
}, - "amount": "400.00",
- "dimensions": {
- "location": {
- "id": "4",
- "name": "Australia"
}, - "department": {
- "id": null,
- "name": null
}, - "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
}
}, - "lineNumber": 0,
- "accountLabel": {
- "id": "Bonuses",
- "key": "35",
- "href": "/objects/accounts-receivable/account-label/35"
}, - "currency": {
- "txnCurrency": "AUD",
- "baseCurrency": "AUD",
- "exchangeRateDate": null,
- "exchangeRateTypeId": null,
- "exchangeRate": 1
}, - "txnAmount": "400.00",
- "allocation": {
- "key": null,
- "id": null
}, - "isBillable": null,
- "audit": {
- "createdDateTime": "2024-09-24T14:18:18Z",
- "modifiedDateTime": "2024-09-24T14:18:18Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "deferredRevenueGLAccount": {
- "key": null,
- "id": null,
- "name": null
}, - "startDate": null,
- "endDate": null,
- "taxDetail": {
- "taxRate": null,
- "id": null,
- "key": null
}, - "isTax": false,
- "isSubTotal": null,
- "taxEntries": [
- {
- "id": "52",
- "key": "52",
- "recurringInvoiceLine": {
- "id": "51",
- "key": "51",
- "href": "/objects/accounts-receivable/recurring-invoice-line/51"
}, - "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/recurring-invoice-tax-entry/52"
}
], - "href": "/objects/accounts-receivable/recurring-invoice-line/51"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}