GET CashManagement/GetUnbankedSafeDrops?SiteID={SiteID}
Gets the Unbanked Safe Drops based on SiteID
Request Information
URI Parameters
Name | Type | Description | Additional information |
---|---|---|---|
SiteID | integer |
Body Parameters
None.
Response Information
Resource Description
Collection of SafeDropItemName | Type | Description | Additional information |
---|---|---|---|
SafeDropID | integer |
None. |
|
SafeDropName | string |
None. |
|
SafeDropDate | date |
None. |
|
SafeDropTotal | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[ { "SafeDropID": 1, "SafeDropName": "sample string 2", "SafeDropDate": "2024-11-21T07:08:55.2560129+00:00", "SafeDropTotal": 4.0 }, { "SafeDropID": 1, "SafeDropName": "sample string 2", "SafeDropDate": "2024-11-21T07:08:55.2560129+00:00", "SafeDropTotal": 4.0 } ]
application/xml, text/xml
Sample:
<ArrayOfSafeDropItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tevalis.API.Core.Models.CashManagement"> <SafeDropItem> <SafeDropDate>2024-11-21T07:08:55.2560129+00:00</SafeDropDate> <SafeDropID>1</SafeDropID> <SafeDropName>sample string 2</SafeDropName> <SafeDropTotal>4</SafeDropTotal> </SafeDropItem> <SafeDropItem> <SafeDropDate>2024-11-21T07:08:55.2560129+00:00</SafeDropDate> <SafeDropID>1</SafeDropID> <SafeDropName>sample string 2</SafeDropName> <SafeDropTotal>4</SafeDropTotal> </SafeDropItem> </ArrayOfSafeDropItem>