Standard order code examples

Standard orders are scheduled for delivery within 3 to 5 business days.

{
    "order": {
        "courier_type": "standard",
        "delivery_address": "1 Test",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "receiver_contact_number": "0411000444",
        "retailer_invoice": "SO-123standard",
        "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"
        }
    }
}

Order with minimum required fields

{
    "order": {
        "courier_type": "standard",
        "delivery_address": "1 Union Street",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "parcel_attributes": [
            {
                "qty": 1,
                "weight": 2.1
            }
        ],
        "user_attributes": {
            "email": "test@shippit.com",
            "first_name": "John",
            "last_name": "Smith"
        }
    }
}

Order with all optional fields

{
    "order": {
        "courier_type": "standard",
        "delivery_address": "1 Union Street",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "parcel_attributes": [
            {
                "qty": 1,
                "weight": 2.1
            }
        ],
        "user_attributes": {
            "email": "test@shippit.com",
            "first_name": "John",
            "last_name": "Smith"
        }
    }
}

Standard order with group order code example

{
    "order": {
        "courier_type": "standard",
        "delivery_address": "1 Test",
        "delivery_postcode": "2009",
        "delivery_state": "NSW",
        "delivery_suburb": "Pyrmont",
        "authority_to_leave": "Yes",
        "receiver_contact_number": "0411000444",
        "retailer_invoice": "SO-123standard",
        "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"
        }
    }
}