Search for products from a given Shopify store
Security
bearerToken
An access token obtained for the above Shopify store that will be used to make requests to Shopify with
Example:"cjuqb_6bp89123d45516c78288f433bd8bc13j"
The maximum number of items to return in the result set.
Example:100
- Productionhttps://api-v2.dash.app/shopify-product-searches
- Staginghttps://api-v2.dashstaging.app/shopify-product-searches
curl -i -X POST \
https://api-v2.dash.app/shopify-product-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"shop": "planto.myshopify.com",
"shopifyAccessToken": "cjuqb_6bp89123d45516c78288f433bd8bc13j",
"criterion": {
"type": "FIELD_IN",
"values": [
"this",
"that"
],
"field": "SKU"
},
"pageSize": 100,
"cursor": "eyJsYXN0X2lkIjo3MDE3MjQ0MDY1ODQ4LCJsYXN0X3ZhbHVlIjoiNzAxNzI0NDA2NTg0OCJ9"
}'Success
The specified page of Shopify Product resources which match the search criterion
Response
{ "results": [ { … } ], "nextCursor": "eyJsYXN0X2lkIjo3MDE3MjQ0MDY1ODQ4LCJsYXN0X3ZhbHVlIjoiNzAxNzI0NDA2NTg0OCJ9" }