Warehouse Defaults PUT

URI

https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/warehouse-service/warehouse/{ID}/product/{PRODUCT-ID}

Refer to our documentation on URI syntax for more information on how to construct URIs.

Description

This endpoint allows to make updates to a single warehouse defaults data set.

All fields within the body of the request are optional and can include:
- Default location ID
- Overflow location ID
- Reorder level
- Reorder quantity

PUT request will overwrite all of the not supplied fields with empty values.

Example

Updating warehouse defaults in warehouse 2 for product 1007, set default location ID to 10

Request URI

/warehouse/2/product/1007

Request body

{
	"defaultLocationId": 10
}

Response

{
	"response": {
	}
}