GET api/StoreProductSearch/{id}
Gets a list of store products search item.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
UriName of store. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SearchText| Name | Description | Type | Additional information |
|---|---|---|---|
| SearchTextName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SearchTextName": "sample string 1"
},
{
"SearchTextName": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfSearchText xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models">
<SearchText>
<SearchTextName>sample string 1</SearchTextName>
</SearchText>
<SearchText>
<SearchTextName>sample string 1</SearchTextName>
</SearchText>
</ArrayOfSearchText>