Close
logo

Price Uplift Pipe

Git RepositoryEdit on Github
Last update: 2 years ago by Francesco de LorenziReading time: 2 min

When configuring an inventory feed, Jetti allows you to to apply a fixed/percentage-based markup or discount on inventory feed variants. If your business needs to apply more granular price calculation, such as brand specific discounts, Jetti makes it possible to set-up a dedicated API pipeline.

In this way, it is possible to dynamically calculate price and compareAtPrice for each inventory feed variant, at fetching level. This makes it possible to apply price uplift or manipulation before the price is sent to the channel.

The Price API pipeline configuration is available in the Inventory Feed settings page, under the Inventory and Pricing tab.

After ticking the API Pipeline for dynamically setting prices, 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": [
"price"
],
"properties": {
"price": {
"type": [
"number"
]
},
"compareAtPrice": {
"type": [
"number",
"null"
]
}
},
"additionalProperties": false
}
๐Ÿ” API Pipeline โ€” Previous
Packing Slip Pipe
Next โ€” ๐Ÿ” API Pipeline
Shipping Service Levels Pipe