POST api/Expert/PushContract

推送合同付款

Request Information

URI Parameters

None.

Body Parameters

ContractParameter
NameDescriptionTypeAdditional information
page

页码

integer

None.

pagesize

页码条数

integer

None.

ContractType

合同类型 0-普通委托合同,1-赎楼委托合同, 2-评估委托合同, 3-注册委托合同

string

None.

Status

状态

string

None.

ContractId

合同Id

integer

None.

PeriodsNum

期数(分几个阶段付款)

integer

None.

ContractRate

收费比例 以10000为项数

decimal number

None.

PayRate

合同阶段收费比例 以100为项数

decimal number

None.

MyRemark

备注

string

None.

UserId

专家Id

string

None.

Token

登录验证

string

None.

Request Formats

application/json, text/json

Sample:
{
  "page": 1,
  "pagesize": 2,
  "ContractType": "sample string 3",
  "Status": "sample string 4",
  "ContractId": 5,
  "PeriodsNum": 6,
  "ContractRate": 7.0,
  "PayRate": 8.0,
  "MyRemark": "sample string 9",
  "UserId": "sample string 10",
  "Token": "sample string 11"
}

application/xml, text/xml

Sample:
<ContractParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeiXin.WebAPI.Models.ExpertModels">
  <Token>sample string 11</Token>
  <UserId>sample string 10</UserId>
  <ContractId>5</ContractId>
  <ContractRate>7</ContractRate>
  <ContractType>sample string 3</ContractType>
  <MyRemark>sample string 9</MyRemark>
  <PayRate>8</PayRate>
  <PeriodsNum>6</PeriodsNum>
  <Status>sample string 4</Status>
  <page>1</page>
  <pagesize>2</pagesize>
</ContractParameter>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ContractParameter'.

Response Information

Resource Description

推送合同付款

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.