GET api/GetTotalAmountByAgreementId/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ParticipationData
NameDescriptionTypeAdditional information
TotalAmount

decimal number

None.

PartAgreementDetails

PartAgreementDetails

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalAmount": 1.0,
  "PartAgreementDetails": {
    "AgreementDescription": "sample string 1",
    "AgreementNo": "sample string 2",
    "AgreementID": 3,
    "VendorName": "sample string 4",
    "CCMDate": "sample string 5",
    "ProjectNO": "sample string 6",
    "ProjectId": 7
  }
}

application/xml, text/xml

Sample:
<ParticipationData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses">
  <PartAgreementDetails>
    <AgreementDescription>sample string 1</AgreementDescription>
    <AgreementID>3</AgreementID>
    <AgreementNo>sample string 2</AgreementNo>
    <CCMDate>sample string 5</CCMDate>
    <ProjectId>7</ProjectId>
    <ProjectNO>sample string 6</ProjectNO>
    <VendorName>sample string 4</VendorName>
  </PartAgreementDetails>
  <TotalAmount>1</TotalAmount>
</ParticipationData>