POST
/
objects
/
{objectId}
/
order
Order material for an object
curl --request POST \
  --url http:localhost:3000/v2/objects/{objectId}/order \
  --header 'Content-Type: application/json' \
  --header 'x-API-Key: <api-key>' \
  --data '{
  "items": [
    {}
  ],
  "comment": "<string>"
}'
{
  "orderId": "<string>"
}

Authorizations

x-API-Key
string
header
required

Path Parameters

objectId
string<objectid>
required

Object ID

Body

application/json

Response

201
application/json

Order created

The response is of type object.