POST api/v1/customerdynamicconcepts/search
Request Information
URI Parameters
None.
Body Parameters
CustomerDynamicConceptSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CategoryId | integer |
None. |
|
| CustomerId | integer |
None. |
|
| Categories | Collection of string |
None. |
|
| ShowCustomerProfile | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CategoryId": 2,
"CustomerId": 3,
"Categories": [
"sample string 1",
"sample string 2"
],
"ShowCustomerProfile": true,
"Skip": 5,
"Take": 6
}
application/xml, text/xml
Sample:
<CustomerDynamicConceptSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.CustomerDynamicConcepts">
<Categories xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Categories>
<CategoryId>2</CategoryId>
<CustomerId>3</CustomerId>
<Id>1</Id>
<ShowCustomerProfile>true</ShowCustomerProfile>
<Skip>5</Skip>
<Take>6</Take>
</CustomerDynamicConceptSearch>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfListOfCustomerDynamicConcept| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Collection of CustomerDynamicConcept |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.