POST api/CashRegister/CashRegisterStatus
Request Information
URI Parameters
None.
Body Parameters
RequestIDModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
Required |
|
| RequestedUserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"RequestedUserID": 1
}
application/xml, text/xml
Sample:
<RequestIDModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request"> <RequestedUserID>1</RequestedUserID> <ID>1</ID> </RequestIDModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CashRegisterHistoryStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| User | string |
None. |
|
| StartTime | date |
None. |
|
| StartTimeString | string |
None. |
|
| CloseTime | date |
None. |
|
| PaymentReceived | decimal number |
None. |
|
| PaymentRefund | decimal number |
None. |
|
| TotalSales | decimal number |
None. |
|
| TaxCollected | decimal number |
None. |
|
| TotalRefund | decimal number |
None. |
|
| TotalExpense | decimal number |
None. |
|
| TaxRefund | decimal number |
None. |
|
| Expected | decimal number |
None. |
|
| CashRegisterName | string |
None. |
|
| AllCashRegisterPaymentInOutList | Collection of CashRegisterPaymentInOutModel |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"User": "sample string 1",
"StartTime": "2026-07-28T08:37:08.5956126+02:00",
"StartTimeString": "sample string 2",
"CloseTime": "2026-07-28T08:37:08.5956126+02:00",
"PaymentReceived": 1.0,
"PaymentRefund": 1.0,
"TotalSales": 1.0,
"TaxCollected": 1.0,
"TotalRefund": 1.0,
"TotalExpense": 1.0,
"TaxRefund": 1.0,
"Expected": 1.0,
"CashRegisterName": "sample string 3",
"AllCashRegisterPaymentInOutList": [
{
"Transaction": "sample string 1",
"dAmount": 1.0,
"dAmountString": "sample string 2",
"User": "sample string 3",
"Note": "sample string 4"
},
{
"Transaction": "sample string 1",
"dAmount": 1.0,
"dAmountString": "sample string 2",
"User": "sample string 3",
"Note": "sample string 4"
}
],
"ResponseCode": 4,
"ResponseText": "sample string 5"
}
application/xml, text/xml
Sample:
<CashRegisterHistoryStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
<ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">4</ResponseCode>
<ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 5</ResponseText>
<AllCashRegisterPaymentInOutList xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
<d2p1:CashRegisterPaymentInOutModel>
<d2p1:Note>sample string 4</d2p1:Note>
<d2p1:Transaction>sample string 1</d2p1:Transaction>
<d2p1:User>sample string 3</d2p1:User>
<d2p1:dAmount>1</d2p1:dAmount>
<d2p1:dAmountString>sample string 2</d2p1:dAmountString>
</d2p1:CashRegisterPaymentInOutModel>
<d2p1:CashRegisterPaymentInOutModel>
<d2p1:Note>sample string 4</d2p1:Note>
<d2p1:Transaction>sample string 1</d2p1:Transaction>
<d2p1:User>sample string 3</d2p1:User>
<d2p1:dAmount>1</d2p1:dAmount>
<d2p1:dAmountString>sample string 2</d2p1:dAmountString>
</d2p1:CashRegisterPaymentInOutModel>
</AllCashRegisterPaymentInOutList>
<CashRegisterName>sample string 3</CashRegisterName>
<CloseTime>2026-07-28T08:37:08.5956126+02:00</CloseTime>
<Expected>1</Expected>
<PaymentReceived>1</PaymentReceived>
<PaymentRefund>1</PaymentRefund>
<StartTime>2026-07-28T08:37:08.5956126+02:00</StartTime>
<StartTimeString>sample string 2</StartTimeString>
<TaxCollected>1</TaxCollected>
<TaxRefund>1</TaxRefund>
<TotalExpense>1</TotalExpense>
<TotalRefund>1</TotalRefund>
<TotalSales>1</TotalSales>
<User>sample string 1</User>
</CashRegisterHistoryStatusResponse>