POST api/ContractPurchase/PlusPurchaseContract
Request Information
URI Parameters
None.
Body Parameters
ContractPurchasePlusDataObject| Name | Description | Type | Additional information |
|---|---|---|---|
| ContractNo | string |
None. |
|
| ContractFee | decimal number |
None. |
|
| OrderFee | decimal number |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"contractNo": "sample string 1",
"contractFee": 2.0,
"orderFee": 3.0,
"remark": "sample string 4"
}
application/xml, text/xml
Sample:
<ContractPurchasePlusDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ContractNo>sample string 1</ContractNo> <ContractFee>2</ContractFee> <OrderFee>3</OrderFee> <Remark>sample string 4</Remark> </ContractPurchasePlusDataObject>
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>