InventoryOrders
Add an item to an Inventory Order
This endpoint adds an item to an inventory order.
post/inventory/orders/{orderId}/items
Request body
Example request
{
"quantity": 10,
"unit_price": 200
}Response
The inventory order item was successfully retrieved
Example response
{
"data": {
"quantity": 10,
"unit_price": 200,
"product_name": "Blissful Body Butter",
"line_total": 2000
}
}