POST WEvalDeclaration/GetProjectPayInfo
Request Information
URI Parameters
None.
Body Parameters
GetProjectPayRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ProjectNo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProjectNo": "sample string 1"
}
application/xml, text/xml
Sample:
<GetProjectPayRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.Pay"> <ProjectNo>sample string 1</ProjectNo> </GetProjectPayRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RemoteResponseOfGetProjectPayResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errors | string |
None. |
|
| unauthed | boolean |
None. |
|
| result | GetProjectPayResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errors": "sample string 2",
"unauthed": true,
"result": {
"ProjectNo": "sample string 1",
"IsPay": true,
"ReceivableAmount": 3.0,
"ReceivedAmount": 4.0,
"Amount": 5.0
}
}
application/xml, text/xml
Sample:
<RemoteResponseOfGetProjectPayResponseLp3t_SjLc 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.Pay">
<d2p1:Amount>5</d2p1:Amount>
<d2p1:IsPay>true</d2p1:IsPay>
<d2p1:ProjectNo>sample string 1</d2p1:ProjectNo>
<d2p1:ReceivableAmount>3</d2p1:ReceivableAmount>
<d2p1:ReceivedAmount>4</d2p1:ReceivedAmount>
</Result>
<Success>true</Success>
<UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfGetProjectPayResponseLp3t_SjLc>