Inventory Check Stock Availability
Request
Body Params application/json
{
"token": "string",
"lines": [
{
"productId": "string",
"productVariantId": "string",
"quantity": 0
}
]
}
Request samples
curl --location --request POST 'https://platform.shopranos.eu/api/InventoryLevels/availability' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "string",
"lines": [
{
"productId": "string",
"productVariantId": "string",
"quantity": 0
}
]
}'
Responses
application/json {
"token": "string",
"available": true,
"lines": [
{
"productId": "string",
"productVariantId": "string",
"unitQuantity": 0,
"unitAvailableQuantity": 0,
"quantity": 0,
"availableQuantity": 0
}
]
}
Modified at 2025-02-11 12:12:00