Sync Products

*This is a GET webhook set by the POS

This will be called when the user initiates a product sync from Deliverect. This should be responded to by calling the Insert/update products categories endpoint

Depending on your setup, there are two ways of responding to this GET request, either a-sync or sync

Method.Description
a-syncYou can respond with an empty HTTP 204then asynchronously send us products via Insert/update products categories. *
syncYou can choose to respond synchronously to the request by responding to the call directly with the same payload described on Insert/update products categories. *

📘

Product Sync URL Format

As this URL will receive a simple GET request, you would need to provide a parameter within the URL to identify the location in the POS e.g. https://www.yourwebhook.com?locationID=254754

curl --location --request GET 'https://integrator.com/products' \
--header 'Accept: application/json'
Language