GET api/ProductSearch/{id}?resulttype={resulttype}
Gets a list of product search text.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Organization Id. |
integer |
Required |
| resulttype |
Result Type. |
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>