POST api/Accounting/RecieptList
Request Information
URI Parameters
None.
Body Parameters
DailyTransListCriteriaViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Currency_Symbol | string |
None. |
|
| Daily_Trans_Type_ID | integer |
None. |
|
| Discount_Amount | decimal number |
None. |
|
| Person_No | string |
None. |
|
| From_Trans_Amount | decimal number |
None. |
|
| To_Trans_Amount | decimal number |
None. |
|
| From_Trans_Date | string |
None. |
|
| To_Trans_Date | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Currency_Symbol": "sample string 1",
"Daily_Trans_Type_ID": 2,
"Discount_Amount": 3.1,
"Person_No": "sample string 4",
"From_Trans_Amount": 5.1,
"To_Trans_Amount": 6.1,
"From_Trans_Date": "sample string 7",
"To_Trans_Date": "sample string 8"
}
application/xml, text/xml
Sample:
<DailyTransListCriteriaViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layan_Cargo_API.ViewModels"> <Currency_Symbol>sample string 1</Currency_Symbol> <Daily_Trans_Type_ID>2</Daily_Trans_Type_ID> <Discount_Amount>3.1</Discount_Amount> <From_Trans_Amount>5.1</From_Trans_Amount> <From_Trans_Date>sample string 7</From_Trans_Date> <Person_No>sample string 4</Person_No> <To_Trans_Amount>6.1</To_Trans_Amount> <To_Trans_Date>sample string 8</To_Trans_Date> </DailyTransListCriteriaViewModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | string |
None. |
|
| ErrorText | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": "sample string 1",
"ErrorText": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layan_Cargo_API.Models"> <Data /> <ErrorText>sample string 2</ErrorText> <Success>sample string 1</Success> </ResultModel>