POST api/Invoice/SaveInvoiceCreateInfo
Request Information
URI Parameters
None.
Body Parameters
InvoiceCreateDataObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| CompanyName | string |
None. |
|
| TaxNo | string |
None. |
|
| BankName | string |
None. |
|
| Account | string |
None. |
|
| Address | string |
None. |
|
| ContactName | string |
None. |
|
| ContactPhone | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"companyName": "sample string 2",
"taxNo": "sample string 3",
"bankName": "sample string 4",
"account": "sample string 5",
"address": "sample string 6",
"contactName": "sample string 7",
"contactPhone": "sample string 8"
}
application/xml, text/xml
Sample:
<InvoiceCreateDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>sample string 1</Id> <CompanyName>sample string 2</CompanyName> <TaxNo>sample string 3</TaxNo> <BankName>sample string 4</BankName> <Account>sample string 5</Account> <Address>sample string 6</Address> <ContactName>sample string 7</ContactName> <ContactPhone>sample string 8</ContactPhone> </InvoiceCreateDataObject>
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>