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 API integration access tokens documentation page for more information.
Mirakl APIs are protected by rate limits. Each API has a dedicated section displaying its rate limit.
If you make too many calls, you might receive an HTTP 429 "Too Many Requests" error. The response will contain a Retry-After header that specifies the number of seconds to wait before making a new request.
- 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/taxonomyRequest
Deletes third-party (3P) products from Shopify that have been deleted in Mirakl. This operation also cleans up the middleware by deleting the corresponding product bindings for both third-party (3P) and first-party (1P) products. The operation is asynchronous and scheduled to run periodically, so manual triggering is typically not required.
- Only when you need to trigger the synchronization manually.
- You can run only one Mirakl deleted products synchronization at a time
- Shopify production endpoint.https://operator-shpy.mirakl.net/api/sync/deleted-mirakl-products
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/sync/deleted-mirakl-products \
-H 'Content-Type: application/json' \
-d '{}'- 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-conditionsRequest
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 '{}'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 '{}'