Manual deposit lines

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.

List manual deposit lines

get/objects/accounts-receivable/manual-deposit-line

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.

SecurityOAuth2
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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
    }
}

Get a manual deposit line

get/objects/accounts-receivable/manual-deposit-line/{key}

Returns detailed information for a specified manual deposit line.

SecurityOAuth2
Request
path Parameters
key
required
string

System-assigned unique key for the manual deposit line.

Example: 286
Responses
200

OK

400

Bad Request

Request samples
Response samples
application/json
{
  • "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": {
        },
      • "location": {
        },
      • "project": {
        },
      • "customer": {
        },
      • "vendor": {
        },
      • "employee": {
        },
      • "item": {
        },
      • "class": {
        }
      },
    • "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
    }
}