POST api/Reconciliation/Create
创建 对账单
Request Information
URI Parameters
None.
Body Parameters
CreateReconciliation| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerIds |
客户列表 |
Collection of integer |
None. |
| StartTime |
开始时间 |
date |
None. |
| EndTime |
结束时间 |
date |
None. |
| IsAll |
是否生成全部 |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerIds": [
1,
2
],
"StartTime": "2025-12-26T13:15:30.3550621+08:00",
"EndTime": "2025-12-26T13:15:30.3550621+08:00",
"IsAll": true
}
application/xml, text/xml
Sample:
<CreateReconciliation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViewModel.Api.Reconciliation">
<CustomerIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</CustomerIds>
<EndTime>2025-12-26T13:15:30.3550621+08:00</EndTime>
<IsAll>true</IsAll>
<StartTime>2025-12-26T13:15:30.3550621+08:00</StartTime>
</CreateReconciliation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| errcode |
错误码,默认为成功:SUCCESS |
string |
None. |
| errmsg |
错误信息,默认为:成功 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errcode": "sample string 1",
"errmsg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Infrastructure.WebApi"> <errcode>sample string 1</errcode> <errmsg>sample string 2</errmsg> </ResponseBase>