{
	"info": {
		"_postman_id": "92030557-c425-4a0f-9391-290f0cf79a3e",
		"name": "MBIOE Service",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Get Version",
			"request": {
				"auth": {
					"type": "noauth"
				},
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/version",
					"host": [
						"{{address}}"
					],
					"path": [
						"version"
					]
				}
			},
			"response": []
		},
		{
			"name": "Login",
			"event": [
				{
					"listen": "test",
					"script": {
						"id": "bc1d7e0b-5d35-46c6-9ad8-35928d780559",
						"exec": [
							"try {",
							"    var response = pm.response.json();  ",
							"    if (response[\"data\"] && response[\"data\"][\"token\"])",
							"        pm.environment.set(\"token\", response[\"data\"][\"token\"]);",
							"} catch(e) {}"
						],
						"type": "text/javascript"
					}
				}
			],
			"request": {
				"auth": {
					"type": "noauth"
				},
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n    \"username\": \"admin\",\n    \"password\": \"\",\n    \"erp\" : \"1\",\n    \"multiUserSupport\" : \"0\"\n}"
				},
				"url": {
					"raw": "{{address}}/auth",
					"host": [
						"{{address}}"
					],
					"path": [
						"auth"
					]
				}
			},
			"response": []
		},
		{
			"name": "Logout",
			"request": {
				"method": "DELETE",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "formdata",
					"formdata": []
				},
				"url": {
					"raw": "{{address}}/auth",
					"host": [
						"{{address}}"
					],
					"path": [
						"auth"
					]
				}
			},
			"response": []
		},
		{
			"name": "Directories",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/directories",
					"host": [
						"{{address}}"
					],
					"path": [
						"directories"
					]
				}
			},
			"response": []
		},
		{
			"name": "Select Directory",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"identifier\": \"{{directoryPath}}\"\n}"
				},
				"url": {
					"raw": "{{address}}/directories/select",
					"host": [
						"{{address}}"
					],
					"path": [
						"directories",
						"select"
					]
				}
			},
			"response": []
		},
		{
			"name": "Create Directory",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"\"\n}"
				},
				"url": {
					"raw": "{{address}}/directories/create",
					"host": [
						"{{address}}"
					],
					"path": [
						"directories",
						"create"
					]
				}
			},
			"response": []
		},
		{
			"name": "Delete directory",
			"request": {
				"method": "DELETE",
				"header": [],
				"url": {
					"raw": "{{address}}/directories/selected",
					"host": [
						"{{address}}"
					],
					"path": [
						"directories",
						"selected"
					]
				}
			},
			"response": []
		},
		{
			"name": "Projects",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/projects",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects"
					]
				}
			},
			"response": []
		},
		{
			"name": "Create Project",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"My project 1\"\n}"
				},
				"url": {
					"raw": "{{address}}/projects/create",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"create"
					]
				}
			},
			"response": []
		},
		{
			"name": "Select Project",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"identifier\": \"{{projectId}}\"\n}"
				},
				"url": {
					"raw": "{{address}}/projects/select",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"select"
					]
				}
			},
			"response": []
		},
		{
			"name": "Update Project",
			"request": {
				"method": "PATCH",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"My project name\"\n}"
				},
				"url": {
					"raw": "{{address}}/projects/selected",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Available Reports",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/projects/selected/reports",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"reports"
					]
				}
			},
			"response": []
		},
		{
			"name": "Generate Report",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"reportCategoryId\": \"\",\n\t\"reportId\": \"\",\n\t\"reportables\": [\n\t\t\"\"\n\t\t]\n}"
				},
				"url": {
					"raw": "{{address}}/projects/selected/reports",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"reports"
					]
				}
			},
			"response": []
		},
		{
			"name": "Phases",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/phases",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases"
					]
				}
			},
			"response": []
		},
		{
			"name": "Project Estimation",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/projects/selected/estimation",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"estimation"
					]
				}
			},
			"response": []
		},
		{
			"name": "Create Phase",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"My phase 1\",\n\t\"description\": \"My phase description\"\n}"
				},
				"url": {
					"raw": "{{address}}/phases/create",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases",
						"create"
					]
				}
			},
			"response": []
		},
		{
			"name": "Select Phase",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"identifier\": \"{{phaseId}}\"\n}"
				},
				"url": {
					"raw": "{{address}}/phases/select",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases",
						"select"
					]
				}
			},
			"response": []
		},
		{
			"name": "Move Elevation From",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"sourceDirectoryId\": \"\",\n\t\"sourceProjectId\": \"\",\n\t\"sourcePhaseId\": \"\",\n\t\"sourceElevationId\": \"\"\n}"
				},
				"url": {
					"raw": "{{address}}/phases/selected/move-elevation-from",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases",
						"selected",
						"move-elevation-from"
					]
				}
			},
			"response": []
		},
		{
			"name": "Copy Elevation From",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"type": "text",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"sourcePhaseId\": \"\",\n\t\"sourceElevationId\": \"\"\n}"
				},
				"url": {
					"raw": "{{address}}/phases/selected/copy-elevation-from",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases",
						"selected",
						"copy-elevation-from"
					]
				}
			},
			"response": []
		},
		{
			"name": "Copy Project From",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"type": "text",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"sourceDirectoryPath\": \"\",\n\t\"sourceProjectId\": \"{{projectId}}\"\n}"
				},
				"url": {
					"raw": "{{address}}/directories/selected/copy-project-from",
					"host": [
						"{{address}}"
					],
					"path": [
						"directories",
						"selected",
						"copy-project-from"
					]
				}
			},
			"response": []
		},
		{
			"name": "Reorder Elevation In Phase",
			"request": {
				"method": "PATCH",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"sourceElevationId\": \"\",\n\t\"targetElevationId\": \"\",\n\t\"reorderBehavior\": \"under\"\n}"
				},
				"url": {
					"raw": "{{address}}/phases/selected/reorder-elevation",
					"host": [
						"{{address}}"
					],
					"path": [
						"phases",
						"selected",
						"reorder-elevation"
					]
				}
			},
			"response": []
		},
		{
			"name": "Elevations",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/elevations",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations"
					]
				}
			},
			"response": []
		},
		{
			"name": "Create Elevation",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"aaa\",\n\t\"amount\": 1,\n\t\"elementPricelistId\": \"011cddb4-98ae-418b-b175-4814894e3aea\"\n}"
				},
				"url": {
					"raw": "{{address}}/elevations/create-element-pricelist",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"create-element-pricelist"
					]
				}
			},
			"response": []
		},
		{
			"name": "Elevation Quotation Price",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elevations/selected/quotation-price",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected",
						"quotation-price"
					]
				}
			},
			"response": []
		},
		{
			"name": "Elevation Parts List",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"url": {
					"raw": "{{address}}/elevations/selected/parts-list",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected",
						"parts-list"
					]
				}
			},
			"response": []
		},
		{
			"name": "Elevation Thumbnail",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elevations/{{elevationId}}/thumbnail?width={{width}}&height={{height}}&format={{format}}&view={{view}}&withdimensions={{withDimensions}}&withdescription={{withDescription}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"{{elevationId}}",
						"thumbnail"
					],
					"query": [
						{
							"key": "width",
							"value": "{{width}}"
						},
						{
							"key": "height",
							"value": "{{height}}"
						},
						{
							"key": "format",
							"value": "{{format}}"
						},
						{
							"key": "view",
							"value": "{{view}}"
						},
						{
							"key": "withdimensions",
							"value": "{{withDimensions}}"
						},
						{
							"key": "withdescription",
							"value": "{{withDescription}}"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Selected Elevation Thumbnail",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elevations/selected/thumbnail?width={{width}}&height={{height}}&format={{format}}&view={{view}}&withdimensions={{withDimensions}}&withdescription={{withDescription}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected",
						"thumbnail"
					],
					"query": [
						{
							"key": "width",
							"value": "{{width}}"
						},
						{
							"key": "height",
							"value": "{{height}}"
						},
						{
							"key": "format",
							"value": "{{format}}"
						},
						{
							"key": "view",
							"value": "{{view}}"
						},
						{
							"key": "withdimensions",
							"value": "{{withDimensions}}"
						},
						{
							"key": "withdescription",
							"value": "{{withDescription}}"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Selected Elevation Drawing",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elevations/selected/drawing?width=1500&height=900&withElevation=true&withVerticalCuts=true&withHorizontalCuts=true",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected",
						"drawing"
					],
					"query": [
						{
							"key": "width",
							"value": "1500"
						},
						{
							"key": "height",
							"value": "900"
						},
						{
							"key": "view",
							"value": "interior",
							"disabled": true
						},
						{
							"key": "withGlass",
							"value": "false",
							"disabled": true
						},
						{
							"key": "withElevation",
							"value": "true"
						},
						{
							"key": "withVerticalCuts",
							"value": "true"
						},
						{
							"key": "withHorizontalCuts",
							"value": "true"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Selected Elevation 3D Model",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elevations/selected/3d?format=compressedOBJ",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected",
						"3d"
					],
					"query": [
						{
							"key": "format",
							"value": "compressedOBJ"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Delete Elevation",
			"request": {
				"method": "DELETE",
				"header": [
					{
						"key": "",
						"value": "",
						"type": "text",
						"disabled": true
					}
				],
				"url": {
					"raw": "{{address}}/elevations/selected",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected"
					]
				}
			},
			"response": []
		},
		{
			"name": "Delete Project",
			"request": {
				"method": "DELETE",
				"header": [
					{
						"key": "",
						"value": "",
						"type": "text",
						"disabled": true
					}
				],
				"url": {
					"raw": "{{address}}/projects/selected",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected"
					]
				}
			},
			"response": []
		},
		{
			"name": "Select Elevation",
			"request": {
				"method": "POST",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"identifier\": \"{{elevationId}}\"\n}"
				},
				"url": {
					"raw": "{{address}}/elevations/select",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"select"
					]
				}
			},
			"response": []
		},
		{
			"name": "Update Elevation",
			"request": {
				"method": "PATCH",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"name\": \"My elevation\",\n\t\"amount\": 5\n}"
				},
				"url": {
					"raw": "{{address}}/elevations/selected",
					"host": [
						"{{address}}"
					],
					"path": [
						"elevations",
						"selected"
					]
				}
			},
			"response": []
		},
		{
			"name": "Element Pricelists",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/element-pricelists",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelists"
					]
				}
			},
			"response": []
		},
		{
			"name": "Element Pricelist Thumbnail",
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json"
					}
				],
				"url": {
					"raw": "{{address}}/element-pricelists/{{elementPricelistId}}/thumbnail?format={{format}}&width={{width}}&height={{height}}&sameratio={{sameRatio}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelists",
						"{{elementPricelistId}}",
						"thumbnail"
					],
					"query": [
						{
							"key": "format",
							"value": "{{format}}"
						},
						{
							"key": "width",
							"value": "{{width}}"
						},
						{
							"key": "height",
							"value": "{{height}}"
						},
						{
							"key": "sameratio",
							"value": "{{sameRatio}}"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Select Elementpricelist configurator",
			"request": {
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/select",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"select"
					]
				}
			},
			"response": []
		},
		{
			"name": "Save Elementpricelist configurator",
			"request": {
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/save",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"save"
					]
				}
			},
			"response": []
		},
		{
			"name": "Discard Elementpricelist configurator",
			"request": {
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/discard",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"discard"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get current visual tree",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get current configurator step",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/elementpricelist-configurator/visual-tree/current-step",
					"host": [
						"{{address}}"
					],
					"path": [
						"elementpricelist-configurator",
						"visual-tree",
						"current-step"
					]
				}
			},
			"response": []
		},
		{
			"name": "Move to next visual tree",
			"request": {
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/next",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"next"
					]
				}
			},
			"response": []
		},
		{
			"name": "Move to previous visual tree",
			"request": {
				"method": "POST",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/previous",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"previous"
					]
				}
			},
			"response": []
		},
		{
			"name": "Update visual tree",
			"request": {
				"method": "PATCH",
				"header": [
					{
						"key": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"senderId\": \"1\",\n\t\"newValue\": \"false\"\n}"
				},
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get visual tree prices",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/prices",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"prices"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get visual tree thumbnail",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/thumbnail?width=400&height=400&call-async=false",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"thumbnail"
					],
					"query": [
						{
							"key": "width",
							"value": "400"
						},
						{
							"key": "height",
							"value": "400"
						},
						{
							"key": "call-async",
							"value": "false"
						},
						{
							"key": "view",
							"value": "Interior",
							"disabled": true
						},
						{
							"key": "type",
							"value": "ConstructionPreview2D",
							"disabled": true
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Get visual tree preview",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/preview?id=E24588A46E7D4E38B40F08DD564BF9AF.jpg",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"preview"
					],
					"query": [
						{
							"key": "id",
							"value": "E24588A46E7D4E38B40F08DD564BF9AF.jpg"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Get visual tree 3D model",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/element-pricelist-configurator/visual-tree/3d?format=CompressedOBJ&call-async=false",
					"host": [
						"{{address}}"
					],
					"path": [
						"element-pricelist-configurator",
						"visual-tree",
						"3d"
					],
					"query": [
						{
							"key": "format",
							"value": "CompressedOBJ"
						},
						{
							"key": "call-async",
							"value": "false"
						}
					]
				}
			},
			"response": []
		},
		{
			"name": "Languages",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/languages",
					"host": [
						"{{address}}"
					],
					"path": [
						"languages"
					]
				}
			},
			"response": []
		},
		{
			"name": "Language For Type",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/languages/type/{{languageType}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"languages",
						"type",
						"{{languageType}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Language For Type",
			"request": {
				"method": "PUT",
				"header": [
					{
						"key": "Content-Type",
						"name": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\n\t\"type\": \"\",\n\t\"id\": \"\"\n}"
				},
				"url": {
					"raw": "{{address}}/languages/type",
					"host": [
						"{{address}}"
					],
					"path": [
						"languages",
						"type"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Address Types",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/projects/selected/addresses",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"addresses"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Address for Type",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{address}}/projects/selected/addresses/{{projectAddressType}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"addresses",
						"{{projectAddressType}}"
					]
				}
			},
			"response": []
		},
		{
			"name": "Set Address For Type",
			"request": {
				"method": "PATCH",
				"header": [
					{
						"key": "Content-Type",
						"name": "Content-Type",
						"value": "application/json",
						"type": "text"
					}
				],
				"body": {
					"mode": "raw",
					"raw": "{\r\n    \"name1\": \"Max22\",\r\n    \"name2\": \"Mustermann\",\r\n    \"street\": \"Beispielstraße 1\",\r\n    \"zipAndCity\": \"12345 Ort\",\r\n    \"phone1\": \"1234\",\r\n    \"email\": \"max.mustermann@localhost\"\r\n}"
				},
				"url": {
					"raw": "{{address}}/projects/selected/addresses/{{projectAddressType}}",
					"host": [
						"{{address}}"
					],
					"path": [
						"projects",
						"selected",
						"addresses",
						"{{projectAddressType}}"
					]
				}
			},
			"response": []
		}
	],
	"auth": {
		"type": "bearer",
		"bearer": [
			{
				"key": "token",
				"value": "{{token}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"id": "09484980-165d-4e98-9cfd-887e5a51a200",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"id": "4e013f46-1670-41f8-935b-b52430c08298",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"protocolProfileBehavior": {}
}