POST WEvalContract/AuditContractInfo

合同审核提交;

Request Information

URI Parameters

None.

Body Parameters

ContractApprovalRequest
NameDescriptionTypeAdditional information
ContractID

integer

None.

UserID

string

None.

TaskID

integer

None.

NextApproverID

string

None.

ActionID

integer

None.

Memo

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfPrjContractResultResponse
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

PrjContractResultResponse

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<RemoteResponseOfPrjContractResultResponsedmGyRm56 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 xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
    <d2p1:ContractID>1</d2p1:ContractID>
    <d2p1:Success>true</d2p1:Success>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfPrjContractResultResponsedmGyRm56>