POST WEvalContract/ContractChangeApproval

合同变更审核

Request Information

URI Parameters

None.

Body Parameters

ContractCApprovalRequest
NameDescriptionTypeAdditional information
ContractID

integer

None.

ContractChangeID

integer

None.

UserId

string

None.

TaskID

integer

None.

ActionID

integer

None.

Memo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ContractID": 1,
  "ContractChangeID": 2,
  "UserId": "sample string 3",
  "TaskID": 4,
  "ActionID": 5,
  "Memo": "sample string 6"
}

application/xml, text/xml

Sample:
<ContractCApprovalRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
  <ActionID>5</ActionID>
  <ContractChangeID>2</ContractChangeID>
  <ContractID>1</ContractID>
  <Memo>sample string 6</Memo>
  <TaskID>4</TaskID>
  <UserId>sample string 3</UserId>
</ContractCApprovalRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfBoolean
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": true
}

application/xml, text/xml

Sample:
<RemoteResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result>true</Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfboolean>