GET api/v2/Inventory/Vendors/List
Retrieve a list of all vendors.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Vendor| Name | Description | Type | Additional information |
|---|---|---|---|
| VendorId | string |
None. |
|
| VendorName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VendorId": "sample string 1",
"VendorName": "sample string 2"
},
{
"VendorId": "sample string 1",
"VendorName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfVendor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.dockmaster.lib.models">
<Vendor>
<VendorId>sample string 1</VendorId>
<VendorName>sample string 2</VendorName>
</Vendor>
<Vendor>
<VendorId>sample string 1</VendorId>
<VendorName>sample string 2</VendorName>
</Vendor>
</ArrayOfVendor>