Resolves Dash products to their stored Shopify product IDs and searches the given Shopify store for those products.
Security
bearerToken
An access token obtained for the above Shopify store that will be used to make requests to Shopify with
Example:"cjuqb_6bp89123d45516c78288f433bd8bc13j"
- Productionhttps://api-v2.dash.app/shopify-product-id-searches
- Staginghttps://api-v2.dashstaging.app/shopify-product-id-searches
curl -i -X POST \
https://api-v2.dash.app/shopify-product-id-searches \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"shop": "planto.myshopify.com",
"shopifyAccessToken": "cjuqb_6bp89123d45516c78288f433bd8bc13j",
"dashProductIds": [
"string"
]
}'Response
{ "results": [ { … } ] }