Create. API

Order Products

Access Levels
Group: shop, order_managment
Resource: order_products

List all products in an order

GET 	https://api.create.net/orders/{order_id}/products

Response

Status: 200 OK
{
    products:
    [
        {
            ID: "4384825",
            order_id: "1948152",
            product_id: "3706871",
            name: "Example Product",
            options: null,
            stock_record_id: null,
            price: "10",
            qty: "1",
            unique_id: "",
            was_price: "0.00",
            trade_price: "7.00"
        },
        {
            ID: "4384826",
            order_id: "1948152",
            product_id: "3706879",
            name: "Test Product 2",
            options: [{
                ID: 1023305,
                title: "Colour",
                items: [{
                    ID: 5039609,
                    title: "Blue",
                    custom_value: ""
                }]
            }],
            stock_record_id: "442900",
            price: "5",
            qty: "1",
            unique_id: "",
            was_price: "0.00",
            trade_price: "4.00"
        }
    ]
}