List stores
GET {{baseUrl}}/v1/applications/:applicationId/stores?pageSize=50&skip=10&sort=value&withTotalResultSize=true&campaignId=10&name=US Store&integrationId=store001&query=value
List all stores for a specific Application.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
pageSize | number | The number of items in this response. | |
skip | number | The number of items to skip when paging through large result sets. | |
sort | string | The field by which results should be sorted. By default, results are sorted in ascending order. To sort them in descending order, prefix the field name with -. |
Note: This parameter works only with numeric fields. |
| withTotalResultSize
| boolean | | When this flag is set, the result includes the total size of the result, across all pages. This might decrease performance on large data sets.
When true: hasMore is true when there is a next page. totalResultSize is always zero.
When false: hasMore is always false. totalResultSize contains the total number of results for this query. |
| campaignId
| number | | Filter results by campaign. |
| name
| string | | The name of the store. |
| integrationId
| string | | The integration ID of the store. |
| query
| string | | Filter results by name or integrationId. |