POST staff/cash_book/list_bank_report
Request Information
URI Parameters
None.
Body Parameters
Request_Cashbook_Sum_Cash| Name | Description | Type | Additional information |
|---|---|---|---|
| id_bank | integer |
Required |
|
| page_num | integer |
Required |
|
| company_name | string |
Required |
|
| store_name | string |
Required |
|
| from_date | string |
Required |
|
| to_date | string |
Required |
|
| token | string |
Required |
|
| secret_key | string |
Required |
|
| id_staff_action | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"id_bank": 1,
"page_num": 2,
"company_name": "sample string 3",
"store_name": "sample string 4",
"from_date": "sample string 5",
"to_date": "sample string 6",
"token": "sample string 7",
"secret_key": "sample string 8",
"id_staff_action": 9
}
application/xml, text/xml
Sample:
<Request_Cashbook_Sum_Cash xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code.Directory.Models.Cashbook.Request"> <id_staff_action xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">9</id_staff_action> <secret_key xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">sample string 8</secret_key> <token xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code">sample string 7</token> <company_name>sample string 3</company_name> <from_date>sample string 5</from_date> <id_bank>1</id_bank> <page_num>2</page_num> <store_name>sample string 4</store_name> <to_date>sample string 6</to_date> </Request_Cashbook_Sum_Cash>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| status | integer |
None. |
|
| error_code | string |
None. |
|
| content | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"error_code": "sample string 2",
"content": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/be_motosoft.Areas.Code"> <content /> <error_code>sample string 2</error_code> <status>1</status> </Result>