GET api/VMAX/GetAXVendors?textcompare={textcompare}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| textcompare | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AXVendor| Name | Description | Type | Additional information |
|---|---|---|---|
| Vendorname | string |
None. |
|
| VendorCode | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Vendorname": "sample string 1",
"VendorCode": "sample string 2"
},
{
"Vendorname": "sample string 1",
"VendorCode": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfAXVendor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<AXVendor>
<VendorCode>sample string 2</VendorCode>
<Vendorname>sample string 1</Vendorname>
</AXVendor>
<AXVendor>
<VendorCode>sample string 2</VendorCode>
<Vendorname>sample string 1</Vendorname>
</AXVendor>
</ArrayOfAXVendor>