A taxonomy synchronization task has been created.
Shopify Operator Connector APIs
You must authenticate with a bearer token that can be generated from your Mirakl Platform back office. Refer to Generating Front API integration access tokens documentation page for more information.
https://operator-shpy.mirakl.net/
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/taxonomy
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/taxonomy
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/product-shopify-to-mirakl
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/product-shopify-to-mirakl \
-H 'Content-Type: application/json' \
-d '{
"sinceDate": null
}'
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/offer-conditions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/offer-conditions
Request
Import offers from Mirakl into Shopify. This operation is asynchronous and is scheduled to run periodically, so in most cases, you don't need to trigger it manually.
- Only when you need to trigger the import manually.
- You can run only one offer synchronization at a time
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/offers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/offers \
-H 'Content-Type: application/json' \
-d '{
"sinceDate": null
}'
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/shipment-mirakl-to-shopify
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/shipment-mirakl-to-shopify \
-H 'Content-Type: application/json' \
-d '{
"sinceDate": null
}'
Request
Import products from Mirakl into Shopify. This operation is asynchronous and is scheduled to run periodically, so in most cases, you don't need to trigger it manually.
- Only when you need to trigger the import manually.
- You can run only one product synchronization at a time
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/sync/product-mirakl-to-shopify
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/product-mirakl-to-shopify \
-H 'Content-Type: application/json' \
-d '{
"sinceDate": null
}'