Internal Transfer POST

URI

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

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

Description

Transfer goods from one location in a warehouse to another location in the same warehouse.

Example

Demonstrates moving 10 of product id 1010 from location id 2 to location id 16 in the warehouse 2

Request URI

/warehouse/2/internal-transfer

Request body

{
	"warehouseId": "2",
	"transferredProducts": [
		{
			"productId": "1010",
			"quantity": "10",
			"fromLocationId": "2",
			"toLocationId": "16"
		}
	]
}

Response

{
	"response": 48
}