POST api/CashRegister/PayoutOrAdds
Request Information
URI Parameters
None.
Body Parameters
PayoutOrAddsRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CashRegisterHistoryID | integer |
Required |
|
| CashRegisterPaymentTypeID | integer |
Required |
|
| dAmount | decimal number |
Required |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CashRegisterHistoryID": 1,
"CashRegisterPaymentTypeID": 2,
"dAmount": 3.0,
"Note": "sample string 4"
}
application/xml, text/xml
Sample:
<PayoutOrAddsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Request"> <CashRegisterHistoryID>1</CashRegisterHistoryID> <CashRegisterPaymentTypeID>2</CashRegisterPaymentTypeID> <Note>sample string 4</Note> <dAmount>3</dAmount> </PayoutOrAddsRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseText": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <ResponseCode>1</ResponseCode> <ResponseText>sample string 2</ResponseText> </ResponseDetail>