{
	"info": {
		"_postman_id": "b9b68066-1c0f-4a5e-a954-99b8bf718a2c",
		"name": "iBuild Pricing Tests",
		"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
	},
	"item": [
		{
			"_postman_id": "6e810b28-c4c9-4a82-974c-c9f6e726bb65",
			"name": "Attributes",
			"item": [
				{
					"_postman_id": "bef16aa5-a9c9-4cfd-b486-f9fe3f4e270f",
					"name": "Attributes-Valid-Request",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test models key exists",
									"tests[\"models key exists\"] = \"models\" in jsonData;",
									"//Test ceilingHeights key exists",
									"tests[\"ceilingHeights key exists\"] = \"ceilingHeights\" in jsonData;",
									"//Test windRatings key exists",
									"tests[\"windRatings key exists\"] = \"windRatings\" in jsonData;",
									"//Test bals key exists",
									"tests[\"bals key exists\"] = \"bals\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": "{{url}}/kit-home/attributes.php",
						"description": "Test 1 for Kit Homes Attributes"
					},
					"response": []
				},
				{
					"_postman_id": "6ab6247a-992d-4673-92c1-984d3b331e10",
					"name": "Attributes-Bad-Params",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test models key exists",
									"tests[\"models key exists\"] = \"models\" in jsonData;",
									"//Test ceilingHeights key exists",
									"tests[\"ceilingHeights key exists\"] = \"ceilingHeights\" in jsonData;",
									"//Test windRatings key exists",
									"tests[\"windRatings key exists\"] = \"windRatings\" in jsonData;",
									"//Test bals key exists",
									"tests[\"bals key exists\"] = \"bals\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/kit-home/attributes.php?abc=0",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"kit-home",
								"attributes.php"
							],
							"query": [
								{
									"key": "abc",
									"value": "0"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"_postman_id": "273ed9fb-ccef-4624-8e98-f44c2a24e77a",
			"name": "Kit Home Pricing",
			"item": [
				{
					"_postman_id": "e44ca61d-9f1d-4cb9-b1ae-26b668d177ac",
					"name": "Standard",
					"item": [
						{
							"_postman_id": "ec3d4947-a44a-434e-bb3b-3abf289b568f",
							"name": "Standard-Valid-Request",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 200\"] = responseCode.code === 200;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test lockupPrice key exists",
											"tests[\"lockupPrice key exists\"] = \"lockupPrice\" in jsonData;",
											"//Test liningPrice key exists",
											"tests[\"liningPrice key exists\"] = \"liningPrice\" in jsonData;",
											"//Test finalPrice key exists",
											"tests[\"finalPrice key exists\"] = \"finalPrice\" in jsonData;",
											"//Test totalPrice key exists",
											"tests[\"totalPrice key exists\"] = \"totalPrice\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/standard.php?model=Abbey%20View",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"standard.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey%20View"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "dc8febf5-7bdf-4600-9a09-a0627f9e2042",
							"name": "Standard-Invalid-Model",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 404\"] = responseCode.code === 404;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code key is 0",
											"tests[\"code key is 0\"] = jsonData[\"code\"] === 0;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/standard.php?model=Abbey",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"standard.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "e10c4e48-07a8-4459-be06-cf1621e335f2",
							"name": "Standard-No-Params",
							"event": [
								{
									"listen": "test",
									"script": {
										"id": "fbbcbfa0-8750-432c-a69e-c6ea70263c63",
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 400\"] = responseCode.code === 400;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code of response",
											"tests[\"code is 1\"] = jsonData.code === 1;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": "{{url}}/kit-home/standard.php"
							},
							"response": []
						}
					],
					"_postman_isSubFolder": true
				},
				{
					"_postman_id": "f60c20cf-36a1-4c8d-9bec-8ac10cf8beee",
					"name": "Customised",
					"item": [
						{
							"_postman_id": "aa880501-7207-42f7-888c-fe0849054dba",
							"name": "Customised-Valid-Request",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 200\"] = responseCode.code === 200;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test lockupPrice key exists",
											"tests[\"lockupPrice key exists\"] = \"lockupPrice\" in jsonData;",
											"//Test liningPrice key exists",
											"tests[\"liningPrice key exists\"] = \"liningPrice\" in jsonData;",
											"//Test finalPrice key exists",
											"tests[\"finalPrice key exists\"] = \"finalPrice\" in jsonData;",
											"//Test totalPrice key exists",
											"tests[\"totalPrice key exists\"] = \"totalPrice\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&windRating=N2&bal=Low&ceilingHeight=2.4",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "bal",
											"value": "Low"
										},
										{
											"key": "ceilingHeight",
											"value": "2.4"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "cecd0ba6-89c2-4778-b22f-d9d8b2617ef2",
							"name": "Customised-Invalid-Kithome-1",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 404\"] = responseCode.code === 404;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code key is 0",
											"tests[\"code key is 0\"] = jsonData[\"code\"] === 0;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&windRating=N2&bal=Low&ceilingHeight=2.5",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "bal",
											"value": "Low"
										},
										{
											"key": "ceilingHeight",
											"value": "2.5"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "233e00fb-93ed-42a6-8155-171045ee76ed",
							"name": "Customised-Invalid-Kithome-2",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 404\"] = responseCode.code === 404;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code key is 0",
											"tests[\"code key is 0\"] = jsonData[\"code\"] === 0;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&windRating=N2&bal=Low&ceilingHeight=2.5",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "bal",
											"value": "Low"
										},
										{
											"key": "ceilingHeight",
											"value": "2.5"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "413f4fac-a81d-40a6-87b6-2ef01124e488",
							"name": "Customised-No-Ceiling-Height-Param",
							"event": [
								{
									"listen": "test",
									"script": {
										"id": "4b61d0be-3ff2-433e-b20b-d178e0cb9466",
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 400\"] = responseCode.code === 400;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code key is 1",
											"tests[\"code key is 1\"] = jsonData[\"code\"] === 1;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&windRating=N2&bal=Low",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "bal",
											"value": "Low"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "2ff4e6ad-b5c1-40ac-8014-0bdbe51912bf",
							"name": "Customised-No-Bal-Param",
							"event": [
								{
									"listen": "test",
									"script": {
										"id": "e9776611-fe90-4d5e-9655-f4190412926a",
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 400\"] = responseCode.code === 400;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code of response",
											"tests[\"code is 1\"] = jsonData.code === 1;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&windRating=N2&ceilingHeight=2.4",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "ceilingHeight",
											"value": "2.4"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "4a3be83e-a998-475e-b857-09de970831dd",
							"name": "Customised-No-Wind-Rating-Param",
							"event": [
								{
									"listen": "test",
									"script": {
										"id": "664c02cc-6fc3-4306-a930-4fd46f3401cb",
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 400\"] = responseCode.code === 400;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code of response",
											"tests[\"code is 1\"] = jsonData.code === 1;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?model=Abbey+View&bal=Low&ceilingHeight=2.4",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "model",
											"value": "Abbey+View"
										},
										{
											"key": "bal",
											"value": "Low"
										},
										{
											"key": "ceilingHeight",
											"value": "2.4"
										}
									]
								}
							},
							"response": []
						},
						{
							"_postman_id": "a694104e-11dc-437c-aa2f-7940dcd5996a",
							"name": "Customised-No-Model-Param",
							"event": [
								{
									"listen": "test",
									"script": {
										"id": "3c62986a-caf9-4252-ad79-65e7b40051be",
										"type": "text/javascript",
										"exec": [
											"//Test response code",
											"tests[\"Status code is 400\"] = responseCode.code === 400;",
											"",
											"var jsonData = JSON.parse(responseBody);",
											"//Test code of response",
											"tests[\"code is 1\"] = jsonData.code === 1;",
											"//Test message key exists",
											"tests[\"message key exists\"] = \"message\" in jsonData;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/kit-home/customised.php?windRating=N2&bal=Low&ceilingHeight=2.4",
									"protocol": "http",
									"host": [
										"test",
										"i-build",
										"com",
										"au"
									],
									"path": [
										"pricing-api",
										"kit-home",
										"customised.php"
									],
									"query": [
										{
											"key": "windRating",
											"value": "N2"
										},
										{
											"key": "bal",
											"value": "Low"
										},
										{
											"key": "ceilingHeight",
											"value": "2.4"
										}
									]
								}
							},
							"response": []
						}
					],
					"_postman_isSubFolder": true
				}
			]
		},
		{
			"_postman_id": "13bc4821-f0cb-4150-8066-0ea8d738c5c4",
			"name": "Deliveries",
			"item": [
				{
					"_postman_id": "166e218e-6a3c-48ff-8624-ccf82d0851d3",
					"name": "Deliveries-Mainland-NSW-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3750 for Kit Home\"] = jsonData[0][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Melbourne for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Melbourne\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Melbourne for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Melbourne\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Wagga%20Wagga%20NSW",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Wagga%20Wagga%20NSW"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "34443aa5-3d01-4f6f-9b57-ea5e27c9bd53",
					"name": "Deliveries-Mainland-NSW-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3750 for Kit Home\"] = jsonData[0][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Sydney for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Sydney\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Sydney for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Sydney\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Tamworth%20NSW",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Tamworth%20NSW"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "32b3307b-fc55-4e41-8c9c-42e030577661",
					"name": "Deliveries-Mainland-NSW-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3750 for Kit Home\"] = jsonData[0][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Brisbane for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Brisbane\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Moree%20NSW",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Moree%20NSW"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "f11524c4-f96e-49a6-a7d5-3c1fda61dff0",
					"name": "Deliveries-Mainland-NSW-4",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "2b754c44-5d9f-4de2-9ec4-5722f3ff3653",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Sydney for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Sydney\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Sydney for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Sydney\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Gosford%20NSW",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Gosford%20NSW"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "d88c9ae5-9e47-4bec-8b32-265fa6449772",
					"name": "Deliveries-Mainland-QLD-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "6036b3f8-e5fe-4f82-b0af-36ed2983139b",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 9000 for Kit Home\"] = jsonData[0][\"price\"] === 9000;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 9000 for Modular Home\"] = jsonData[1][\"price\"] === 9000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Townsville for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Brisbane\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Longreach%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Longreach%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "1c7672b3-4b7d-4e70-9654-4b2a76c4ffde",
					"name": "Deliveries-Mainland-QLD-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 7500 for Kit Home\"] = jsonData[0][\"price\"] === 7500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 7500 for Modular Home\"] = jsonData[1][\"price\"] === 7500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Cameron%20Corner%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Cameron%20Corner%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "948cfc4e-ecaa-4de0-a759-142a3fd4f183",
					"name": "Deliveries-Mainland-QLD-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "0940f83a-2801-4576-b7ba-556fc898497b",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 12750 for Kit Home\"] = jsonData[0][\"price\"] === 12750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 6000 for Modular Home\"] = jsonData[1][\"price\"] === 6000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Townsville for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Townsville\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Cairns%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Cairns%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "024d9c86-9c6f-4066-bde3-f30d8de9c68a",
					"name": "Deliveries-Mainland-QLD-4",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "abe13471-78c3-4833-ae49-7f1dd2307654",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Brisbane for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Brisbane\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Albany%20Creek%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Albany%20Creek%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "4ad5acca-8367-457e-b493-26a9eeedc427",
					"name": "Deliveries-Mainland-QLD-5",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "126d7cd3-f707-4082-bf13-773cf05c3be9",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 10500 for Kit Home\"] = jsonData[0][\"price\"] === 10500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Townsville for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Townsville\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Garbutt%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Garbutt%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "7bbb813d-2df9-42de-abfd-2000b5f7678d",
					"name": "Deliveries-Mainland-NT-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 16500 for Kit Home\"] = jsonData[0][\"price\"] === 16500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 12000 for Modular Home\"] = jsonData[1][\"price\"] === 12000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Darwin for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Darwin\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Tanami%20NT",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Tanami%20NT"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "a814039e-c7d8-4a55-a3d7-d5d586001bd1",
					"name": "Deliveries-Mainland-NT-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 12750 for Kit Home\"] = jsonData[0][\"price\"] === 12750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 12750 for Modular Home\"] = jsonData[1][\"price\"] === 12750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Mereenie%20NT",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Mereenie%20NT"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "7369e3f1-52e6-40b9-a25f-98f9400d77ca",
					"name": "Deliveries-Mainland-NT-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "fa0f528c-14bf-4c74-9655-444ff830da33",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 23250 for Kit Home\"] = jsonData[0][\"price\"] === 23250;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Darwin for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Darwin\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Knuckey%20Lagoon%20NT",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Knuckey%20Lagoon%20NT"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "ec75cc76-acdf-42d6-92eb-072857553e43",
					"name": "Deliveries-Mainland-WA-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 9000 for Kit Home\"] = jsonData[0][\"price\"] === 9000;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Perth for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Perth\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 9000 for Modular Home\"] = jsonData[1][\"price\"] === 9000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Perth for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Perth\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Newman%20WA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Newman%20WA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "d29cebc3-f987-449f-a880-aec34f8a4fc3",
					"name": "Deliveries-Mainland-WA-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3750 for Kit Home\"] = jsonData[0][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Perth for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Perth\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Perth for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Perth\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Geraldton%20WA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Geraldton%20WA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "eeb7fc99-05ca-407d-976c-21f6c0e940d9",
					"name": "Deliveries-Mainland-WA-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 6000 for Kit Home\"] = jsonData[0][\"price\"] === 6000;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Perth for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Perth\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 6000 for Modular Home\"] = jsonData[1][\"price\"] === 6000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Perth for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Perth\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Norseman%20WA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Norseman%20WA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "26f04fc1-a9cd-4436-bd6c-970c9ce52c3b",
					"name": "Deliveries-Mainland-WA-4",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "054cdfa4-aa28-4016-9a29-1f0e3f42507d",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Perth for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Perth\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Perth for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Perth\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Duncraig%20WA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Duncraig%20WA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "060eba65-8a25-466a-beb3-1fea1627998c",
					"name": "Deliveries-Mainland-SA-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 6750 for Kit Home\"] = jsonData[0][\"price\"] === 6750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 6750 for Modular Home\"] = jsonData[1][\"price\"] === 6750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Koonibba%20SA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Koonibba%20SA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "4b374cb3-6556-4447-a38b-ee8b2ef4e226",
					"name": "Deliveries-Mainland-SA-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "a2572bd0-df3f-4505-a0bd-0ae2f4ea822f",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3750 for Kit Home\"] = jsonData[0][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3750 for Modular Home\"] = jsonData[1][\"price\"] === 3750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Mount%20Gambier%20SA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Mount%20Gambier%20SA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "d6469f82-2cf6-47f0-9929-72c8005c774a",
					"name": "Deliveries-Mainland-SA-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "e4cc4048-d3e5-4bdc-b531-f140a7007576",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Glenelg%20SA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Glenelg%20SA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "784a06aa-104d-405f-9265-3b4253c19282",
					"name": "Deliveries-Mainland-VIC-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 3000 for Kit Home\"] = jsonData[0][\"price\"] === 3000;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Adelaide for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Adelaide\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 3000 for Modular Home\"] = jsonData[1][\"price\"] === 3000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Adelaide for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Adelaide\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Mildura%20VIC",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Mildura%20VIC"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "c5330d86-bc13-4532-9f0b-d5b2a7fa406b",
					"name": "Deliveries-Mainland-VIC-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 1500 for Kit Home\"] = jsonData[0][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Melbourne for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Melbourne\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 1500 for Modular Home\"] = jsonData[1][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Melbourne for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Melbourne\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Bendigo%20VIC",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Bendigo%20VIC"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "db9300e6-01b3-4039-8a32-67a38ddece4a",
					"name": "Deliveries-Mainland-VIC-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "aea0095a-85ee-479a-ac84-42c70ea80fee",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Melbourne for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Melbourne\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Melbourne for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Melbourne\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Mulgrave%20VIC",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Mulgrave%20VIC"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "e7d3f9e7-d1a7-49b7-b7bb-a9279628a800",
					"name": "Deliveries-Full-Address-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "aea0095a-85ee-479a-ac84-42c70ea80fee",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Melbourne for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Melbourne\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Melbourne for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Melbourne\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=1961%20Point%20Nepean%20Rd,%20Rye%20VIC%203941",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "1961%20Point%20Nepean%20Rd,%20Rye%20VIC%203941"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "1b8e50ab-9003-47bb-b2c0-90c7f3cdf84d",
					"name": "Deliveries-Full-Address-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "b9ee5a25-dcfd-40c1-9bcf-85fb08d7f457",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 1500 for Kit Home\"] = jsonData[0][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Sydney for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Sydney\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 1500 for Modular Home\"] = jsonData[1][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Sydney for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Sydney\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=86%20Beaumont%20St,%20Hamilton%20NSW%202303",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "86%20Beaumont%20St,%20Hamilton%20NSW%202303"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "03ea8d9f-6eab-4905-99e7-7cd8b7e8a5b4",
					"name": "Deliveries-Unreachable-Island-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Hinchinbrook%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Hinchinbrook%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "cf1e1e2c-92e2-438f-b6e6-49d8bff36ab5",
					"name": "Deliveries-Unreachable-Island-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Hamilton%20Island%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Hamilton%20Island%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "2ff37abf-31f0-43d7-93ec-5223a016ec48",
					"name": "Deliveries-Unreachable-Island-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Fraser Island,%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Fraser Island,%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "cbd8b11e-8dc8-4fa3-a673-1463aa22a730",
					"name": "Deliveries-Unreachable-Island-4",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Kangaroo Island,%20SA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Kangaroo Island,%20SA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "f6e4c42d-f67c-4d49-830d-dda8d1f5b9c0",
					"name": "Deliveries-Unreachable-Island-5",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Melville Island,%20NT",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Melville Island,%20NT"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "bd78a9fa-81cc-4c75-a4d0-3265c76c8d80",
					"name": "Deliveries-Unreachable-Island-6",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Thursday%20Island%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Thursday%20Island%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "6b989bb0-3a67-4255-98a4-7aabe11f5ea9",
					"name": "Deliveries-Unreachable-Island-7",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;",
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Lizard%20Island%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Lizard%20Island%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "634dc7be-54b3-45c9-9c8d-b1d71d0c8b17",
					"name": "Deliveries-Reachable-Island-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "66097ffa-4cd1-42be-b4a3-4a81fac77593",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 1500 for Kit Home\"] = jsonData[0][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Melbourne for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Melbourne\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 1500 for Modular Home\"] = jsonData[1][\"price\"] === 1500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Melbourne for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Melbourne\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Phillip%20Island,%20VIC",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Phillip%20Island,%20VIC"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "1e205881-ce22-4f29-b82f-a284132d5120",
					"name": "Deliveries-Reachable-Island-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "23aefc5e-cd86-4027-ac9a-7943d16938f9",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test productType key exists for Kit Home",
									"tests[\"productType key exists for Kit Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Kit Home",
									"tests[\"price equals 750 for Kit Home\"] = jsonData[0][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Kit Home",
									"tests[\"dispatchedFrom is Brisbane for Kit Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Brisbane\";",
									"",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[1];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 750 for Modular Home\"] = jsonData[1][\"price\"] === 750;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Brisbane for Modular Home\"] = jsonData[1][\"dispatchedFrom\"] === \"Brisbane\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Bribie%20Island,%20QLD",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Bribie%20Island,%20QLD"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "c856ffcd-1627-4d24-98f1-108e128ff2d2",
					"name": "Deliveries-Tasmania-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test number of objects returned",
									"tests[\"Only Modular Home is returned\"] = jsonData.length === 1;",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 5000 for Modular Home\"] = jsonData[0][\"price\"] === 5000;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Hobart for Modular Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Hobart\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Campbell%20Town%20TAS",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Campbell%20Town%20TAS"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "1dfb0e6d-0acb-4390-9550-21d9506467a1",
					"name": "Deliveries-Tasmania-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test number of objects returned",
									"tests[\"Only Modular Home is returned\"] = jsonData.length === 1;",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 5500 for Modular Home\"] = jsonData[0][\"price\"] === 5500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Hobart for Modular Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Hobart\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Devonport%TAS",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Devonport%TAS"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "f7bd81e7-dbae-4af5-9294-05d1b3e8faa3",
					"name": "Deliveries-Tasmania-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 200\"] = responseCode.code === 200;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test number of objects returned",
									"tests[\"Only Modular Home is returned\"] = jsonData.length === 1;",
									"//Test productType key exists for Modular Home",
									"tests[\"productType key exists for Modular Home\"] = \"productType\" in jsonData[0];",
									"//Test price key exists for Modular Home",
									"tests[\"price equals 6500 for Modular Home\"] = jsonData[0][\"price\"] === 6500;",
									"//Test dispatchedFrom key exists for Modular Home",
									"tests[\"dispatchedFrom is Hobart for Modular Home\"] = jsonData[0][\"dispatchedFrom\"] === \"Hobart\";"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Smithton%20TAS",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Smithton%20TAS"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "819ada2c-230b-4b06-b1e0-99492046ca26",
					"name": "Deliveries-Foreign-1",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "4a50fa5c-45ee-4b21-959a-539c2006d5d3",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Washington%20USA",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Washington%20USA"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "579aa13d-8411-4850-aed2-278ca3420488",
					"name": "Deliveries-Foreign-2",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "4a676fe9-1cc3-4acc-bb18-c4e2c8276484",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Ottawa%20Canada",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Ottawa%20Canada"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "4a75dd16-4179-4fcb-b53a-6d7c500d3af0",
					"name": "Deliveries-Foreign-3",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "fe4dc25c-3471-46cf-a021-d3f5764bf646",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=London%20UK",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "London%20UK"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "89ff93a6-04fb-470c-8e04-3a65c7889ee8",
					"name": "Deliveries-Foreign-4",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "96908fc0-1363-415e-9a24-deb993a1a44d",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Berlin%20Germany",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Berlin%20Germany"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "7c29e640-88f5-495f-ae81-69ae7149353b",
					"name": "Deliveries-Foreign-5",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "4b67c511-04a4-4a7b-b5e1-04cced2f2d1e",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 404\"] = responseCode.code === 404;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 2\"] = jsonData[\"code\"] === 2;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=Paris%20France",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "Paris%20France"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "90769b32-6064-41ab-b061-7cc0c7555707",
					"name": "Deliveries-Invalid-Address",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "c28be01a-4be2-4f03-b304-b50e739563d0",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 400\"] = responseCode.code === 400;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 1\"] = jsonData[\"code\"] === 1;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?address=XXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "address",
									"value": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "e65baf9e-048c-40c6-8635-cc304e83fe24",
					"name": "Deliveries-Bad-Params",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "c28be01a-4be2-4f03-b304-b50e739563d0",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 400\"] = responseCode.code === 400;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 1\"] = jsonData[\"code\"] === 1;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/delivery.php?addr=Clayton%20Victoria",
							"protocol": "http",
							"host": [
								"test",
								"i-build",
								"com",
								"au"
							],
							"path": [
								"pricing-api",
								"delivery.php"
							],
							"query": [
								{
									"key": "addr",
									"value": "Clayton%20Victoria"
								}
							]
						}
					},
					"response": []
				},
				{
					"_postman_id": "5889a426-4776-4a34-bda7-d3227193ee24",
					"name": "Deliveries-No-Params",
					"event": [
						{
							"listen": "test",
							"script": {
								"id": "c28be01a-4be2-4f03-b304-b50e739563d0",
								"type": "text/javascript",
								"exec": [
									"//Test response code",
									"tests[\"Status code is 400\"] = responseCode.code === 400;",
									"",
									"var jsonData = JSON.parse(responseBody);",
									"//Test code key exists and is 2",
									"tests[\"code key is 1\"] = jsonData[\"code\"] === 1;",
									"//Test message key exists",
									"tests[\"message key exists\"] = \"message\" in jsonData;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": "{{url}}/delivery.php?"
					},
					"response": []
				}
			]
		}
	]
}