POST api/cashBalancing/{id}/eftDetails
Get list of Cash balancing eft summary records by machine
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Cash balancing header identifier |
globally unique identifier |
Required |
Body Parameters
Cash balancing eft details
Collection of CashBalancingEft| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| HeaderIdentifier | Collection of byte |
None. |
|
| HeaderIdentifierGuid | globally unique identifier |
None. |
|
| Date | date |
None. |
|
| MachineID | integer |
None. |
|
| CardID | integer |
None. |
|
| CardName | string |
None. |
|
| ExpectedAmount | integer |
None. |
|
| ManagerDeclared | integer |
None. |
|
| EftTenderCount | integer |
None. |
|
| MachineName | string |
Relation. This field may not always be loaded or used for updates. |
Request Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"id": 1,
"headerIdentifier": "nRuWHYG/z02YYSrmo4K5aA==",
"headerIdentifierGuid": "1d961b9d-bf81-4dcf-9861-2ae6a382b968",
"date": "2026-06-03T18:32:24.1423263",
"machineID": 1,
"cardID": 3,
"cardName": "sample string 4",
"expectedAmount": 1,
"managerDeclared": 1,
"eftTenderCount": 1,
"machineName": "sample string 5"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfCashBalancingEft xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Accounting">
<CashBalancingEft>
<CardID>3</CardID>
<CardName>sample string 4</CardName>
<Date>2026-06-03T18:32:24.1423263+00:00</Date>
<EftTenderCount>1</EftTenderCount>
<ExpectedAmount>1</ExpectedAmount>
<HeaderIdentifier>nRuWHYG/z02YYSrmo4K5aA==</HeaderIdentifier>
<HeaderIdentifierGuid>1d961b9d-bf81-4dcf-9861-2ae6a382b968</HeaderIdentifierGuid>
<ID>1</ID>
<MachineID>1</MachineID>
<MachineName>sample string 5</MachineName>
<ManagerDeclared>1</ManagerDeclared>
</CashBalancingEft>
<CashBalancingEft>
<CardID>3</CardID>
<CardName>sample string 4</CardName>
<Date>2026-06-03T18:32:24.1423263+00:00</Date>
<EftTenderCount>1</EftTenderCount>
<ExpectedAmount>1</ExpectedAmount>
<HeaderIdentifier>nRuWHYG/z02YYSrmo4K5aA==</HeaderIdentifier>
<HeaderIdentifierGuid>1d961b9d-bf81-4dcf-9861-2ae6a382b968</HeaderIdentifierGuid>
<ID>1</ID>
<MachineID>1</MachineID>
<MachineName>sample string 5</MachineName>
<ManagerDeclared>1</ManagerDeclared>
</CashBalancingEft>
</ArrayOfCashBalancingEft>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Matching list of details
None.