POST api/DTTS/daybook
Request Information
URI Parameters
None.
Body Parameters
DayBookReqDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FromDate | string |
None. |
|
| ToDate | string |
None. |
|
| BranchId | integer |
None. |
|
| PaymentModeId | integer |
None. |
|
| CounterId | integer |
None. |
|
| UserName | string |
None. |
|
| ReceiptType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromDate": "sample string 1",
"ToDate": "sample string 2",
"BranchId": 3,
"PaymentModeId": 4,
"CounterId": 5,
"UserName": "sample string 6",
"ReceiptType": "sample string 7"
}
application/xml, text/xml
Sample:
<DayBookReqDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTTSMobileAPI.WebApp.Models.Dto"> <BranchId>3</BranchId> <CounterId>5</CounterId> <FromDate>sample string 1</FromDate> <PaymentModeId>4</PaymentModeId> <ReceiptType>sample string 7</ReceiptType> <ToDate>sample string 2</ToDate> <UserName>sample string 6</UserName> </DayBookReqDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.