Order Acknowledgement PUT

URI

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

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

Description

This message enables you to acknowledge or un-acknowledge an existing Brightpearl purchase order.

The response of the Order Acknowledgement PUT is empty.

Field Description Required
acknowledged true(Acknowledge) / false(Un-acknowledge) False (default true)
reference Supplier's shipping reference. False

Example 1

Acknowledge Purchase Order 1029.

Request URI

/order/1029/acknowledgement

Request body

{
	"acknowledged": true,
	"reference": "#1752805305.fhe908qw-z-z-plural-z-alpha"
}

Response

{
}

Example 2

Un-acknowledge Purchase Order 1029.

Request URI

/order/1029/acknowledgement

Request body

{
	"acknowledged": false,
	"reference": "#1752805305.fhe908qw-z-z-plural-z-alpha"
}

Response

{
}