GET api/VendorPOListbyUPCcode?UPCCode={UPCCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UPCCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
respVendorPOList| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorPOs | Collection of VendorPo |
None. |
Response Formats
application/json, text/json
Sample:
{
"VendorPOs": [
{
"VendorPOCode": "sample string 1",
"VendorName": "sample string 2",
"VendorPONum": "sample string 3",
"VendorPODate": "sample string 4",
"ItemsOnPO": 5
},
{
"VendorPOCode": "sample string 1",
"VendorName": "sample string 2",
"VendorPONum": "sample string 3",
"VendorPODate": "sample string 4",
"ItemsOnPO": 5
}
]
}
application/xml, text/xml
Sample:
<VendorPOListbyUPCcodeController.respVendorPOList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EFBEMobileRestApi.Controllers">
<VendorPOs>
<VendorPOListbyUPCcodeController.VendorPo>
<ItemsOnPO>5</ItemsOnPO>
<VendorName>sample string 2</VendorName>
<VendorPOCode>sample string 1</VendorPOCode>
<VendorPODate>sample string 4</VendorPODate>
<VendorPONum>sample string 3</VendorPONum>
</VendorPOListbyUPCcodeController.VendorPo>
<VendorPOListbyUPCcodeController.VendorPo>
<ItemsOnPO>5</ItemsOnPO>
<VendorName>sample string 2</VendorName>
<VendorPOCode>sample string 1</VendorPOCode>
<VendorPODate>sample string 4</VendorPODate>
<VendorPONum>sample string 3</VendorPONum>
</VendorPOListbyUPCcodeController.VendorPo>
</VendorPOs>
</VendorPOListbyUPCcodeController.respVendorPOList>