Goods-In Note Correction POST

URI

https://{DATACENTER}.brightpearlconnect.com/public-api/{ACCOUNT}
/warehouse-service/goods-note/goods-in/{ID}/correction

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

Description

This message allows you to create goods in corrections. You may remove items received in a batch if there is sufficient on hand quantity.

  • productId: ID of the product on the goods in.
  • location: ID of the location the product was received into.
  • cost: The value and currency of the item which was received.
  • quantity: The amount you wish to remove.

Example

Removing two items from goods in note 20 which were received into location 2 with price 12.54.

Request URI

/goods-note/goods-in/20/correction

Request body

{
	"productId": 2344,
	"locationId": 2,
	"cost": {
		"currency": "GBP",
		"value": "12.54"
	},
	"quantity": 2
}

Response

{
}