master
Captures min reorder quantities from your base system at article store level. This will be considered during forecast and will be maintained.
Request
Body Params application/json
array of:
If you want to set only a min limit, use a negative value for the max limit. All negative values are ignored in limits
If you want to set only a max limit, use a negative value for the max limit. All negative values are ignored in limits
[
{
"article_id": "string",
"store_id": "string",
"min_limit": -1,
"max_limit": -1
}
]
Request samples
curl --location --request POST 'https://test.your-api-server.com/master/article_store_limits/' \
--header 'X-SYNC-TOKEN;' \
--header 'Accept-Encoding;' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"article_id": "string",
"store_id": "string",
"min_limit": -1,
"max_limit": -1
}
]'
Responses
{
"status": "string",
"message": "string"
}
Modified at 2025-02-10 12:39:04