POST api/v2/leaflets/search
Request Information
URI Parameters
None.
Body Parameters
LeafletsSearchRequestName | Description | Type | Additional information |
---|---|---|---|
SearchText | string |
Required |
|
Skip | integer |
None. |
|
Top | integer |
None. |
|
ApiKey | globally unique identifier |
Required |
|
ApplicationVersion | integer |
Required |
|
Udid | string |
Required |
|
UserID | globally unique identifier |
Required |
|
ZoneID | integer |
Required |
Request Formats
application/json, text/json
Sample:
{ "SearchText": "sample string 1", "Skip": 1, "Top": 1, "ApiKey": "a9c83ab1-db1b-4d88-a20f-63bdfd1740ea", "ApplicationVersion": 3, "Udid": "sample string 4", "UserID": "2df9ed7d-14e2-41a8-bc0d-409c55f47551", "ZoneID": 6 }
application/xml, text/xml
Sample:
<LeafletsSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models.Leaflets.Requests.v2"> <ApiKey xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models">a9c83ab1-db1b-4d88-a20f-63bdfd1740ea</ApiKey> <ApplicationVersion xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models">3</ApplicationVersion> <Udid xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models">sample string 4</Udid> <UserID xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models">2df9ed7d-14e2-41a8-bc0d-409c55f47551</UserID> <ZoneID xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models">6</ZoneID> <SearchText>sample string 1</SearchText> <Skip>1</Skip> <Top>1</Top> </LeafletsSearchRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
LeafletsSearchResultV2Name | Description | Type | Additional information |
---|---|---|---|
Leaflets | Collection of LeafletDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "Leaflets": [ { "LeafletID": "90d8265a-b963-48c8-904c-2aff84792522", "PageNumber": 2, "IsInteractive": true, "ThumbnailUrl": "sample string 4" }, { "LeafletID": "90d8265a-b963-48c8-904c-2aff84792522", "PageNumber": 2, "IsInteractive": true, "ThumbnailUrl": "sample string 4" } ] }
application/xml, text/xml
Sample:
<LeafletsSearchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/agilys.myshopi.mvc.leaflets.services.Models.Leaflets.Responses.v2" />