Variant Acknowledgement
Last update: 10 months ago by Francesco de LorenziReading time: 2 min
Variant Acknowledgement
One of the important steps of the Custom Channel integration is Variant Acknowledgment.
By making a PUT
call to https://api.jetti.io/api/channels/:id/acknowledge-variant.json?=
you can pass the externalId
of the variant (being the ID from the external system) and the sku
which is available in Jetti as Inventory List variant.
Here is an example cURL request to send a Variant Acknowledgement to Jetti:
curl --request PUT \--url 'https://api.jetti.io/api/channels/:id/acknowledge-variant.json?=' \--header 'Authorization: Bearer {{token}}' \--header 'Content-Type: application/json' \--data '{"externalId": "0e01c34b-2250-4686-b614-2f9d5568cbf2","sku": "123123123"}'