1 GET /orders/123/shipping
200 OK { Current shipping details + link to parent + link to address picker }
2 -> GET /orders/123/shipping/addresspicker
200 OK { Link and form for searching for a postcode }
3 -> GET /orders/123/shipping/addresspicker?postcode=tn11tl
200 OK { List of addresses each with link to pick it }
4 -> POST /orders/123/shipping/addresspicker?postcode=tn11tl&pickNo=3
200 OK { Current shipping details + link to parent + link to address picker }
GET: (for requesting data from the server.)
https://www.tourguide.com/tours/7POST: (for sending data to the server.)https://www.tourguide.com/toursPUT/PATCH: (for updating requests for data to the server.) https://www.tourguide.com/tours/7DELETE: (for deleting request for data to the server.)https://www.tourguide.com/tours/7