Saltar al contenido principal
PUT
/
logistics
/
inventory
/
skus
/
{sku}
/
warehouses
/
{warehouseId}
Actualizar
curl --request PUT \
  --url https://sandbox.api.riqra.com/logistics/inventory/skus/{sku}/warehouses/{warehouseId} \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "quantity": 123
}
'
{
  "quantity": 123
}

Authorizations

api-key
string
header
required

Todas las llamadas al API tienen que contener este header junto a la clave para poder autenticar y autorizar al cliente.

Path Parameters

sku
string
required

El SKU del producto.

warehouseId
integer
required

El ID del almacén.

Body

application/json
quantity
integer
required

La nueva cantidad del stock de producto.

Response

OK

quantity
integer