Express order code examples

Express orders are scheduled for delivery the day after the order is placed. For example, an order placed on a Monday is scheduled for delivery on Tuesday.

{
    "order": {
        "courier_type": "express",
        "delivery_address": "1 Test",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "receiver_contact_number": "0411000444",
        "retailer_invoice": "SO-123",
        "parcel_attributes": [{
                "qty": 1,
                "weight": 4.1,
                "length": 0.2,
                "depth": 0.1,
                "width": 0.9
            }
        ],
        "product_attributes": [{
                "quantity": 2,
                "title": "Blue Hat",
                "price": 21.90
            }
        ],
        "user_attributes": {
            "email": "john.smith@shippit.com",
            "mobile": "0411000000",
            "first_name": "John",
            "last_name": "Smith"
        }
    }
}

Express order with group order code example

{
    "order": {
        "courier_type": "express",
        "delivery_address": "1 Test",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "receiver_contact_number": "0411000444",
        "retailer_invoice": "SO-123",
        "parcel_attributes": [{
                "qty": 1,
                "weight": 4.1,
                "length": 0.2,
                "depth": 0.1,
                "width": 0.9
            }
        ],
        "product_attributes": [{
                "quantity": 2,
                "title": "Blue Hat",
                "price": 21.90
            }
        ],
        "user_attributes": {
            "email": "john.smith@shippit.com",
            "mobile": "0411000000",
            "first_name": "John",
            "last_name": "Smith"
        },
        "group_order": {
            "id": "GOhIyYRuDwxuK"
        }
    }
}