POST
api/v1/autocomplete-warehouses?keyword={keyword}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| keyword | string |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of WHAutoComplete
Response Formats
application/json, text/json
[
{
"WareHouseId": 1,
"WareHouseCode": "sample string 2",
"Name": "sample string 3"
},
{
"WareHouseId": 1,
"WareHouseCode": "sample string 2",
"Name": "sample string 3"
}
]
text/html
[{"WareHouseId":1,"WareHouseCode":"sample string 2","Name":"sample string 3"},{"WareHouseId":1,"WareHouseCode":"sample string 2","Name":"sample string 3"}]
application/xml, text/xml
<ArrayOfWHAutoComplete xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Inventory">
<WHAutoComplete>
<Name>sample string 3</Name>
<WareHouseCode>sample string 2</WareHouseCode>
<WareHouseId>1</WareHouseId>
</WHAutoComplete>
<WHAutoComplete>
<Name>sample string 3</Name>
<WareHouseCode>sample string 2</WareHouseCode>
<WareHouseId>1</WareHouseId>
</WHAutoComplete>
</ArrayOfWHAutoComplete>
