POST api/Invoice/SaveReceiveInfo
Request Information
URI Parameters
None.
Body Parameters
InvoiceDataObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| InvoiceId | string |
None. |
|
| Amount | decimal number |
None. |
|
| Client | string |
None. |
|
| Receivables | decimal number |
None. |
|
| AlreadyReceive | decimal number |
None. |
|
| Received | decimal number |
None. |
|
| SettleDay | integer |
None. |
|
| InvoiceTime | date |
None. |
|
| InvoiceTimeStr | string |
None. |
|
| Status | string |
None. |
Request Formats
application/json
Sample:
{
"id": "sample string 1",
"invoiceId": "sample string 2",
"amount": 3.0,
"client": "sample string 4",
"receivables": 5.0,
"alreadyReceive": -2.0,
"received": 6.0,
"settleDay": 7,
"invoiceTime": "2026-06-10T07:09:29.6593822+08:00",
"invoiceTimeStr": "2026-06-10",
"status": "距月结时间大于7天"
}
text/json
Sample:
{
"id": "sample string 1",
"invoiceId": "sample string 2",
"amount": 3.0,
"client": "sample string 4",
"receivables": 5.0,
"alreadyReceive": -2.0,
"received": 6.0,
"settleDay": 7,
"invoiceTime": "2026-06-10T07:09:29.6593822+08:00",
"invoiceTimeStr": "2026-06-10",
"status": "距月结时间小于7天,待处理"
}
application/xml, text/xml
Sample:
<InvoiceDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>sample string 1</Id> <InvoiceId>sample string 2</InvoiceId> <Amount>3</Amount> <Client>sample string 4</Client> <Receivables>5</Receivables> <Received>6</Received> <SettleDay>7</SettleDay> <InvoiceTime>2026-06-10T07:09:29.6593822+08:00</InvoiceTime> </InvoiceDataObject>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultObject| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSucceed | boolean |
None. |
|
| Remark | string |
None. |
|
| OpTime | string |
None. |
|
| Result | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSucceed": true,
"remark": "sample string 2",
"opTime": "sample string 3",
"result": {}
}
application/xml, text/xml
Sample:
<JsonResultObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <IsSucceed>true</IsSucceed> <Remark>sample string 2</Remark> <OpTime>sample string 3</OpTime> <Result /> </JsonResultObject>