Line items in a manual deposit represent payments included in the deposit. Create and maintain AR manual deposit lines from the owning manual deposit object.
Returns a collection with a key, ID, and link for each manual deposit 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": "282",
- "id": "282",
- "href": "/objects/accounts-receivable/manual-deposit-line/282"
}, - {
- "key": "286",
- "id": "286",
- "href": "/objects/accounts-receivable/manual-deposit-line/286"
}, - {
- "key": "300",
- "id": "300",
- "href": "/objects/accounts-receivable/manual-deposit-line/300"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "ageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified manual deposit line.
key required | string System-assigned unique key for the manual deposit line. Example: 286 |
OK
Bad Request
{- "ia::result": {
- "id": "300",
- "key": "300",
- "manualDeposit": {
- "id": "148",
- "key": "148",
- "href": "/objects/accounts-receivable/manual-deposit/148"
}, - "glAccount": {
- "key": "36",
- "id": "1200",
- "name": "Accounts Receivable",
- "href": "/objects/general-ledger/account/36"
}, - "accountLabel": {
- "id": "Accounts Receivable - Manual",
- "key": "11",
- "href": "/objects/accounts-receivable/account-label/11"
}, - "currency": {
- "baseCurrency": "USD",
- "txnCurrency": "USD"
}, - "paymentInformation": {
- "baseAmount": "110.00",
- "txnAmount": "110.00"
}, - "dimensions": {
- "department": {
- "key": null,
- "id": null,
- "name": null
}, - "location": {
- "key": "1",
- "id": "1",
- "href": "/objects/company-config/location/1"
}, - "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
}
}, - "memo": null,
- "lineNumber": 1,
- "audit": {
- "createdDateTime": "2025-06-05T11:48:59Z",
- "modifiedDateTime": "2025-06-05T11:54:14Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "href": "/objects/accounts-receivable/manual-deposit-line/300"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}