{
  "info": {
    "_postman_id": "dcfcd55d-cc9b-47cb-99f4-4ae6d04a015c",
    "name": "calServer API",
    "description": "Master Demo API Samples Workspace\n\nWelcome to the Master Demo API Samples Workspace! This workspace is designed for testing the capabilities of the calServer API. Explore various API endpoints and rules to understand their functionality and integration possibilities.\n\n🚀 Getting Started\n\nUse this workspace to experiment with different API calls and scenarios, ensuring seamless integration and optimal utilization of the calServer API. Refer to the provided documentation and examples to streamline your development process.\n\n🔬 Additional Resources\n\nFor further exploration and integration with LabVIEW, check out our demo repository on Bitbucket: [calserver-labview-client](https://bitbucket.org/calserver/calserver-labview-client/src/master/). This repository contains sample code and resources to assist you in integrating calServer API with LabVIEW applications.\n\n🛠️ How to Use\n\n1. **Explore Endpoints**: Dive into the various API endpoints available in the collections provided.\n    \n2. **Test Scenarios**: Experiment with different use cases and scenarios to understand the API's capabilities.\n    \n3. **Refer to Documentation**: Utilize the accompanying documentation to guide your testing and integration efforts.\n    \n4. **Integrate with LabVIEW**: For LabVIEW integration, refer to the resources in the provided Bitbucket repository for seamless connectivity.\n    \n\n📝 Note: This workspace is for testing purposes only. Ensure proper authentication and authorization mechanisms are in place before deploying in production environments.\n\n🛟 Need Help?\n\nIf you encounter any issues or have questions regarding API usage or integration, feel free to reach out to our support team for assistance. We're here to help you make the most out of the calServer API!",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "11572884",
    "_collection_link": "https://go.postman.co/collection/11572884-dcfcd55d-cc9b-47cb-99f4-4ae6d04a015c?source=collection_link"
  },
  "item": [
    {
      "name": "Inventory",
      "item": [
        {
          "name": "Get All Inventories with Customer, Active Calibration, Type",
          "event": [
            {
              "listen": "test",
              "script": {
                "exec": [
                  "pm.test(\"Response status code is 200\", function () {",
                  "    pm.response.to.have.status(200);",
                  "});",
                  "",
                  "pm.test(\"Response time is less than 200ms\", function () {",
                  "  pm.expect(pm.response.responseTime).to.be.below(200);",
                  "});",
                  "",
                  "pm.test(\"Data object structure is valid\", function () {",
                  "    const responseData = pm.response.json();",
                  "    pm.expect(responseData).to.be.an('object');",
                  "    pm.expect(responseData.data).to.exist.and.to.be.an('object');",
                  "    pm.expect(responseData.data.totalCount).to.exist.and.to.be.a('number');",
                  "    pm.expect(responseData.data.inventory).to.exist.and.to.be.an('array');",
                  "});",
                  "",
                  "pm.test(\"Inventory array is present and not empty\", function () {",
                  "    const responseData = pm.response.json();",
                  "    pm.expect(responseData.data.inventory).to.exist.and.to.be.an('array').and.to.have.length.above(0);",
                  "});",
                  "",
                  "pm.test(\"Total count is a non-negative integer\", function () {",
                  "    const responseData = pm.response.json();",
                  "    pm.expect(responseData.data.totalCount).to.be.a('number').and.to.be.at.least(0);",
                  "});"
                ],
                "type": "text/javascript"
              }
            }
          ],
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            },
            "description": "gets all inventories of this user account"
          },
          "response": []
        },
        {
          "name": "Get Inventories with Filters",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"{{field}}\",\"value\": \"{{value}}\",\"operator\": \"{{vault:operator}}\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"{{field}}\",\"value\": \"{{value}}\",\"operator\": \"{{vault:operator}}\"}]"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Inventory",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "ktag", "value": "45f09720-082f-5c74-9cfa-a605e2863904", "type": "text"},
                {"key": "I4201", "value": "Test-API-Asset", "type": "text"},
                {"key": "I4202", "value": "FLUKE", "type": "text"},
                {"key": "I4203", "value": "179", "type": "text"},
                {"key": "I4206", "value": "1234567890", "type": "text"},
                {"key": "I4211", "value": "CALSERVICE", "type": "text"},
                {"key": "I4228", "value": "M", "type": "text"},
                {"key": "I4229", "value": "12", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Inventory",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "MTAG", "value": "ea79b775-8b4b-8e17-98c9-b33e7065ff6f", "type": "text"},
                {"key": "I4201", "value": "Test-API-Asset", "type": "text"},
                {"key": "I4202", "value": "FLUKE", "type": "text"},
                {"key": "I4203", "value": "180", "type": "text"},
                {"key": "I4206", "value": "1234554321", "type": "text"},
                {"key": "I4211", "value": "UPDATED", "type": "text"},
                {"key": "I4228", "value": "W", "type": "text"},
                {"key": "I4229", "value": "10", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory/update?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory", "update"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "The Inventory API contains a record of all available items or resources within the system."
    },
    {
      "name": "Calibration",
      "item": [
        {
          "name": "Get calibrations - C23xx",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"C2303\",\"value\": \"2023-05-23\",\"operator\": \">=\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"C2303\",\"value\": \"2023-05-23\",\"operator\": \">=\"}]"}
              ]
            },
            "description": "Retrieve calibration data filtered by calibration date."
          },
          "response": []
        },
        {
          "name": "Get calibrations - I42xx",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter={\"logic\":\"AND\",\"conditions\":[{\"property\":\"inventory.I4201\",\"value\":\"KAL-1\",\"operator\":\"=\"},{\"property\":\"C2339\",\"value\":\"1\",\"operator\":\"=\"}]}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "{\"logic\":\"AND\",\"conditions\":[{\"property\":\"inventory.I4201\",\"value\":\"KAL-1\",\"operator\":\"=\"},{\"property\":\"C2339\",\"value\":\"1\",\"operator\":\"=\"}]}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Nested Filters Example 1",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/inventory?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter={\"logic\":\"OR\",\"conditions\":[{\"property\":\"I4209\",\"value\":\"B\",\"operator\":\"=\"},{\"property\":\"I4209\",\"value\":\"G\",\"operator\":\"=\"},{\"property\":\"I4209\",\"value\":\"H\",\"operator\":\"=\"}]}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "inventory"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "{\"logic\":\"OR\",\"conditions\":[{\"property\":\"I4209\",\"value\":\"B\",\"operator\":\"=\"},{\"property\":\"I4209\",\"value\":\"G\",\"operator\":\"=\"},{\"property\":\"I4209\",\"value\":\"H\",\"operator\":\"=\"}]}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Nested Filters Example 2",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter={\"logic\":\"AND\",\"conditions\":[{\"property\":\"C2339\",\"value\":\"1\",\"operator\":\"=\"},{\"property\":\"inventory.I4299\",\"value\":\"A\",\"operator\":\"=\"},{\"property\":\"C2303\",\"value\":\"2024-12-31\",\"operator\":\">\"},{\"filter\":{\"logic\":\"OR\",\"conditions\":[{\"property\":\"inventory.I4209\",\"value\":\"B\",\"operator\":\"=\"},{\"property\":\"inventory.I4209\",\"value\":\"H\",\"operator\":\"=\"},{\"property\":\"inventory.I4209\",\"value\":\"G\",\"operator\":\"=\"}]}}]}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "{\"logic\":\"AND\",\"conditions\":[{\"property\":\"C2339\",\"value\":\"1\",\"operator\":\"=\"},{\"property\":\"inventory.I4299\",\"value\":\"A\",\"operator\":\"=\"},{\"property\":\"C2303\",\"value\":\"2024-12-31\",\"operator\":\">\"},{\"filter\":{\"logic\":\"OR\",\"conditions\":[{\"property\":\"inventory.I4209\",\"value\":\"B\",\"operator\":\"=\"},{\"property\":\"inventory.I4209\",\"value\":\"H\",\"operator\":\"=\"},{\"property\":\"inventory.I4209\",\"value\":\"G\",\"operator\":\"=\"}]}}]}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get calibrations - Limit & Offset",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&limit=10&offset=30",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "limit", "value": "10"},
                {"key": "offset", "value": "30"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Calibration",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "MTAG", "value": "ba2bdcdc-391a-24d3-c1de-0501619668c4", "type": "text"},
                {"key": "C2301", "value": "2044-03-05", "type": "text"},
                {"key": "C2333", "value": "12:30:00", "type": "text"},
                {"key": "C2303", "value": "2017-02-15", "type": "text"},
                {"key": "C2307", "value": "oly", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Calibration",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "CTAG", "value": "ba2bdcdc-391a-24d3-c1de-0501619668c4", "type": "text"},
                {"key": "C2301", "value": "2044-03-06", "type": "text"},
                {"key": "C2333", "value": "13:30:00", "type": "text"},
                {"key": "C2303", "value": "2018-02-15", "type": "text"},
                {"key": "C2307", "value": "only", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/calibration/update?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "calibration", "update"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "The Calibration table stores data related to calibration activities performed on equipment or instruments."
    },
    {
      "name": "Customer",
      "item": [
        {
          "name": "Get Customers",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/customer?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"K4602\",\"value\": \"Stricker\",\"operator\": \"=\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "customer"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"K4602\",\"value\": \"Stricker\",\"operator\": \"=\"}]"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/customer/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "customer", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Customer",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "K4601", "value": "0013", "type": "text"},
                {"key": "K4602", "value": "Friedrich", "type": "text"},
                {"key": "K4603", "value": "Friedrich-Ebert-Strasse 699", "type": "text"},
                {"key": "K4604", "value": "Bergisch Gladbach", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/customer/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "customer", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update Customer",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "KTAG", "value": "xxxxxxx", "type": "text"},
                {"key": "K4601", "value": "0013", "type": "text"},
                {"key": "K4602", "value": "Friedrich", "type": "text"},
                {"key": "K4603", "value": "Friedrich-Ebert-Strasse 699", "type": "text"},
                {"key": "K4604", "value": "Bergisch Gladbach", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/customer/update?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "customer", "update"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "The Customers table maintains essential information about clients or users of the system."
    },
    {
      "name": "Standards",
      "item": [
        {
          "name": "Get Standards",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/standard?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"MTAG\",\"value\": \"MTAG_1\",\"operator\": \"=\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "standard"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"MTAG\",\"value\": \"MTAG_1\",\"operator\": \"=\"}]"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/standard/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "standard", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Standards",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "CTAG", "value": "--- CTAG inventory ---", "description": "CTAG inventory", "type": "text"},
                {"key": "MTAGs", "value": "--- MTAG inventory ---", "description": "MTAG inventory", "type": "text"},
                {"key": "C2430", "value": "--- MTAG Standard-Reference Asset ---", "description": "MTAG Standard-Reference Asset", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/standard/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "standard", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Standards",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/standard?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&C2430=xxxxxx",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "standard"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "C2430", "value": "xxxxxx"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "The Standards table catalogs reference inventories utilized in calibration processes."
    },
    {
      "name": "User",
      "item": [
        {
          "name": "Get User by ID",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/user/4782a8df-4ebb-5a29-092a-c972b676e1ad?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user", "4782a8df-4ebb-5a29-092a-c972b676e1ad"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "List All Users",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/user?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&role=Kunde",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "role", "value": "Kunde"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/user/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create User",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n    \"firstname\": \"Alina\",\n    \"lastname\": \"Abner\",\n    \"password\": \"CalHelp$Alina\",\n    \"email\": \"alina@calhelp.de\",\n    \"phone\": \"1234567890\",\n    \"firm\": \"KodePlus\",\n    \"role\": \"Kunde\",\n    \"inventory_filter\": \"all\",\n    \"customer_filter\": \"all\"\n}",
              "options": {"raw": {"language": "json"}}
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/user?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Update User",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n    \"firstname\": \"Belinda\",\n    \"lastname\": \"Anna\",\n    \"password\": \"CalHelp$Belinda\",\n    \"email\": \"belinda@calhelp.de\"\n}",
              "options": {"raw": {"language": "json"}}
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/user/4782a8df-4ebb-5a29-092a-c972b676e1ad?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user", "4782a8df-4ebb-5a29-092a-c972b676e1ad"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete User",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/user/4782a8df-4ebb-5a29-092a-c972b676e1ad?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "user", "4782a8df-4ebb-5a29-092a-c972b676e1ad"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Authenticate User",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n    \"username\": \"belinda1@calhelp.de\",\n    \"password\": \"CalHelp$Belinda1\"\n}",
              "options": {"raw": {"language": "json"}}
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/auth/login?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "auth", "login"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "The User API manages user data such as identity, roles, and permissions."
    },
    {
      "name": "Repair",
      "item": [
        {
          "name": "Get Repair",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/repair?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"R3230\",\"value\": \"2004-05-17\",\"operator\": \"LIKE\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "repair"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"R3230\",\"value\": \"2004-05-17\",\"operator\": \"LIKE\"}]"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/repair/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "repair", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Repair",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "MTAG", "value": "Dummy:1080815227", "type": "text"},
                {"key": "R3230", "value": "2025-04-01", "type": "text"},
                {"key": "R3251", "value": "A", "type": "text"},
                {"key": "R3241", "value": "13:30:00", "type": "text"},
                {"key": "R3201", "value": "Routine maintenance", "type": "text"},
                {"key": "R3204", "value": "Cleaned case and replaced battery", "type": "text"},
                {"key": "R3209", "value": "10", "type": "text"},
                {"key": "R3242", "value": "2025-04-02", "type": "text"},
                {"key": "status", "value": "Wartung geplant", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/repair/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "repair", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Repair",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/repair/33a73f60-861e-6abe-7eba-313d9fdfccb8?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "repair", "33a73f60-861e-6abe-7eba-313d9fdfccb8"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Location",
      "item": [
        {
          "name": "Get Locations",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/location?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&filter=[{\"property\": \"L2809\",\"value\": \"2004-05-17\",\"operator\": \"LIKE\"}]",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "location"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "filter", "value": "[{\"property\": \"L2809\",\"value\": \"2004-05-17\",\"operator\": \"LIKE\"}]"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Rules",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/location/rules?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "location", "rules"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Create Location",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "MTAG", "value": "Dummy:1080815227", "type": "text"},
                {"key": "customer_KTAG", "value": "000000-000000:1073727785", "type": "text"},
                {"key": "L2802", "value": "MICRO TEST", "type": "text"},
                {"key": "L2809", "value": "2025-04-02", "type": "text"},
                {"key": "L2810", "value": "13:30:00", "type": "text"},
                {"key": "L2807", "value": "2025-04-05", "type": "text"},
                {"key": "L2815", "value": "1", "type": "text"},
                {"key": "status", "value": "Reservation", "type": "text"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/location/insert?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "location", "insert"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Delete Location",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/location/9757f448-7c8c-6274-f7bf-caa753136d1f?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "location", "9757f448-7c8c-6274-f7bf-caa753136d1f"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Versions",
      "item": [
        {
          "name": "GetVersion",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/app/version?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&version=3.0.4",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "app", "version"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "version", "value": "3.0.4"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "GetLatestVersion",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/app/version?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}&version=latest",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "app", "version"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"},
                {"key": "version", "value": "latest"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "GetAllVersions",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/app/version?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "app", "version"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ],
      "description": "API endpoints for managing and retrieving version-related information."
    },
    {
      "name": "Master Report",
      "item": [
        {
          "name": "Download",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "https://{{DOMAIN}}/api/report/48fd549f-d416-af53-1026-ec3978225010?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "report", "48fd549f-d416-af53-1026-ec3978225010"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        },
        {
          "name": "Upgrade",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "formdata",
              "formdata": [
                {"key": "file", "type": "file", "src": "Dakks-1.zip"}
              ]
            },
            "url": {
              "raw": "https://{{DOMAIN}}/api/report/0ea8c25c-6409-67b5-9da2-66c41b27dc32?HTTP_X_REST_USERNAME={{HTTP_X_REST_USERNAME}}&HTTP_X_REST_PASSWORD={{HTTP_X_REST_PASSWORD}}&HTTP_X_REST_API_KEY={{HTTP_X_REST_API_KEY}}",
              "protocol": "https",
              "host": ["{{DOMAIN}}"],
              "path": ["api", "report", "0ea8c25c-6409-67b5-9da2-66c41b27dc32"],
              "query": [
                {"key": "HTTP_X_REST_USERNAME", "value": "{{HTTP_X_REST_USERNAME}}"},
                {"key": "HTTP_X_REST_PASSWORD", "value": "{{HTTP_X_REST_PASSWORD}}"},
                {"key": "HTTP_X_REST_API_KEY", "value": "{{HTTP_X_REST_API_KEY}}"}
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "variable": [
    {"key": "DOMAIN", "value": "demo.net-cal.com", "type": "string"},
    {"key": "field", "value": "I4201", "type": "default"},
    {"key": "value", "value": "Test-API-Asset", "type": "default"},
    {"key": "operator", "value": "=", "type": "default"}
  ]
}