POST api/general/createwaterbillinvoice
Request Information
URI Parameters
None.
Body Parameters
updateInvoiceInput| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceNo | integer |
None. |
|
| PaymentRefNo | string |
None. |
|
| ServiceFee | decimal number |
None. |
|
| SocialFee | decimal number |
None. |
|
| OtherFee | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"InvoiceNo": 1,
"PaymentRefNo": "sample string 2",
"ServiceFee": 3.0,
"SocialFee": 4.0,
"OtherFee": 5.0
}
application/xml, text/xml
Sample:
<updateInvoiceInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FEAWebServices.Models"> <InvoiceNo>1</InvoiceNo> <OtherFee>5</OtherFee> <PaymentRefNo>sample string 2</PaymentRefNo> <ServiceFee>3</ServiceFee> <SocialFee>4</SocialFee> </updateInvoiceInput>
multipart/form-data
Sample:
<updateInvoiceInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FEAWebServices.Models"><InvoiceNo>1</InvoiceNo><OtherFee>5</OtherFee><PaymentRefNo>sample string 2</PaymentRefNo><ServiceFee>3</ServiceFee><SocialFee>4</SocialFee></updateInvoiceInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |