GET api/GetParticipationDetailsByParticipationId/{participationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| participationId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ParticipationDataDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| ParticipationID | integer |
None. |
|
| AgreementId | integer |
None. |
|
| AgreementNo | string |
None. |
|
| ProjectId | integer |
None. |
|
| ProjectNO | string |
None. |
|
| VendorId | integer |
None. |
|
| VendorName | string |
None. |
|
| IsPrime | boolean |
None. |
|
| PrimeVendor | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ParticipationID": 1,
"AgreementId": 1,
"AgreementNo": "sample string 2",
"ProjectId": 1,
"ProjectNO": "sample string 3",
"VendorId": 1,
"VendorName": "sample string 4",
"IsPrime": true,
"PrimeVendor": 1
}
application/xml, text/xml
Sample:
<ParticipationDataDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses"> <AgreementId>1</AgreementId> <AgreementNo>sample string 2</AgreementNo> <IsPrime>true</IsPrime> <ParticipationID>1</ParticipationID> <PrimeVendor>1</PrimeVendor> <ProjectId>1</ProjectId> <ProjectNO>sample string 3</ProjectNO> <VendorId>1</VendorId> <VendorName>sample string 4</VendorName> </ParticipationDataDetail>