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": "MucO91bMfU2AoWFyDTpfsw==",
"headerIdentifierGuid": "f70ee732-cc56-4d7d-80a1-61720d3a5fb3",
"date": "2026-04-03T06:17:22.6130982",
"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-04-03T06:17:22.6130982+00:00</Date>
<EftTenderCount>1</EftTenderCount>
<ExpectedAmount>1</ExpectedAmount>
<HeaderIdentifier>MucO91bMfU2AoWFyDTpfsw==</HeaderIdentifier>
<HeaderIdentifierGuid>f70ee732-cc56-4d7d-80a1-61720d3a5fb3</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-04-03T06:17:22.6130982+00:00</Date>
<EftTenderCount>1</EftTenderCount>
<ExpectedAmount>1</ExpectedAmount>
<HeaderIdentifier>MucO91bMfU2AoWFyDTpfsw==</HeaderIdentifier>
<HeaderIdentifierGuid>f70ee732-cc56-4d7d-80a1-61720d3a5fb3</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.