Reservation PUT

URI

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

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

Description

Updates the reservation against the specified order.

Example

Updates the quantity of the reservation of product 1009, to 4, for order 92.

Request URI

/order/92/reservation

Request body

{
	"products": [
		{
			"productId": "1009",
			"salesOrderRowId": "103",
			"quantity": "4"
		}
	]
}

Response

{
}