Inventory Allocation Pipe
Last update: 2 years ago by Francesco de LorenziReading time: 2 min
When configuring an inventory feed, it is possible to apply an allocation buffer on the inventory feed variant quantity. In addition to this, Jetti makes it possible to set-up a dedicated API pipeline for more advanced allocation buffer management.
In this way, it is possible to dynamically calculate inventoryQuantity
and allocationBufferOverride
for each inventory feed variant, at fetching level.
The Inventory Allocation Buffer API pipeline configuration is available in the Inventory Feed settings page, under the Inventory and Pricing tab.
After ticking the API Pipeline for setting inventory allocation buffer, you will be able to enter the URL.
Jetti expects to receive a response which needs to be valid according to the following JSON Schema:
{"type": "object","required": [],"properties": {"inventoryQuantity": {"type": ["integer"]},"allocationBufferOverride": {"type": ["integer","null"]}},"additionalProperties": false}