GET api/GetVendorsByAgreID/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PMAVendorAgreDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorLkp | Collection of VendorLkp |
None. |
|
| AgreementNo | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"VendorLkp": [
{
"VendorName": "sample string 1",
"VendorID": 2,
"VendorType": "sample string 3",
"Status": "sample string 4"
},
{
"VendorName": "sample string 1",
"VendorID": 2,
"VendorType": "sample string 3",
"Status": "sample string 4"
}
],
"AgreementNo": "sample string 1"
}
application/xml, text/xml
Sample:
<PMAVendorAgreDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses">
<AgreementNo>sample string 1</AgreementNo>
<VendorLkp>
<VendorLkp>
<Status>sample string 4</Status>
<VendorID>2</VendorID>
<VendorName>sample string 1</VendorName>
<VendorType>sample string 3</VendorType>
</VendorLkp>
<VendorLkp>
<Status>sample string 4</Status>
<VendorID>2</VendorID>
<VendorName>sample string 1</VendorName>
<VendorType>sample string 3</VendorType>
</VendorLkp>
</VendorLkp>
</PMAVendorAgreDetails>