Returns a collection with a key, ID, and link for each deposit detail. This operation is mostly for use in testing; use query 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/cash-management/deposit-detail/1"
}, - {
- "key": "3",
- "id": "3",
- "href": "/objects/cash-management/deposit-detail/3"
}, - {
- "key": "5",
- "id": "5",
- "href": "/objects/cash-management/deposit-detail/5"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Returns detailed information for a specified deposit detail.
key required | string System-assigned unique key for the deposit detail. Example: 110 |
OK
Bad Request
{- "ia::result": {
- "id": "587",
- "key": "587",
- "deposit": {
- "id": "291",
- "key": "291",
- "depositType": "cd",
- "href": "/objects/cash-management/deposit/291"
}, - "glAccount": {
- "id": "33",
- "key": "33",
- "accountNumber": "1070",
- "name": "Undeposited Funds",
- "href": "/objects/general-ledger/account/33"
}, - "arAccountLabel": {
- "label": null,
- "id": null,
- "key": null
}, - "amount": "1002.00",
- "txnAmount": "1002.00",
- "department": {
- "key": null,
- "id": null,
- "name": null
}, - "location": {
- "key": "1",
- "name": "United States of America",
- "href": "/objects/company-config/location/1"
}, - "baseLocation": {
- "name": "United States of America",
- "key": "1"
}, - "description": "Depisted from undeposited fund from GPay invoice",
- "exchangeRate": {
- "date": "2022-01-23",
- "typeId": "-1",
- "rate": 1
}, - "currency": "USD",
- "baseCurrency": "USD",
- "status": "active",
- "state": "deposited",
- "audit": {
- "createdDateTime": "2021-04-16T00:57:25Z",
- "modifiedDateTime": "2021-04-16T00:57:43Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "href": "/objects/cash-management/deposit-detail/587"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Use the query service to find deposit details that meet certain criteria and to specify the properties that are returned.
OK