OK
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/
Request
Description: Verifies whether the data initialized during the application's installation is still up to date. It compares the currently used data with the initial or expected version and returns an update status indicator. This ensures data consistency and helps detect potential refresh needs.
- When you need to check initialized data
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/setup/check-consistency
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://operator-shpy.mirakl.net/api/setup/check-consistency
{ "checkedElements": [ { … }, { … } ] }
Request
Updates all the data that was initialized during the application's installation. It ensures that the latest versions of the required data are applied, maintaining consistency and preventing outdated information from affecting the system's functionality.
- When you need to update initialized data
- Shopify production endpoint.
https://operator-shpy.mirakl.net/api/setup/update
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://operator-shpy.mirakl.net/api/setup/update
{ "updatedElements": [ { … }, { … } ] }