Create an order

An order can be created in two ways from a quote or directly from products. Below both are demonstrated.

  1. From a quote:

POST /quotes/{id}/order
  1. Directly from products

POST /orders
{
	"name": "QuoteName",
	"customer_id": "1234567",
	"reference_number" : "BlueFish78",
	"availability_request_product_ids": [
		"87sdyf8sgd78sgd31",
	]
	"instance_product_ids": [
		"87sdyf8sgd78sgd32",
		"87sdyf8sgd78sgd33",
		"87sdyf8sgd78sgd34"
	],
	"mandatory_product_ids": []
}

Last updated

Was this helpful?