POST api/ContractPurchase/SavePurchaseContractPayment

Request Information

URI Parameters

None.

Body Parameters

ContractPurchasePaymentDataObject
NameDescriptionTypeAdditional information
Id

string

None.

ContractNo

string

None.

PayedFee

decimal number

None.

TicketFee

decimal number

None.

CreateUser

string

None.

CreateTime

date

None.

CreateTimeString

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "contractNo": "sample string 2",
  "payedFee": 3.0,
  "ticketFee": 4.0,
  "createUser": "sample string 5",
  "createTime": "2026-06-10T07:11:43.9671652+08:00",
  "createTimeString": "2026-06-10"
}

application/xml, text/xml

Sample:
<ContractPurchasePaymentDataObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>sample string 1</Id>
  <ContractNo>sample string 2</ContractNo>
  <PayedFee>3</PayedFee>
  <TicketFee>4</TicketFee>
  <CreateUser>sample string 5</CreateUser>
  <CreateTime>2026-06-10T07:11:43.9671652+08:00</CreateTime>
</ContractPurchasePaymentDataObject>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonResultObject
NameDescriptionTypeAdditional 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>