{"info":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","description":"<html><head></head><body><p>The NetBeez API allows dashboard administrators the ability to integrate NetBeez with other solutions such as tools, reporting &amp; analytics solutions, and more. This documentation outlines available APIs that can be used along with available options and examples.</p>\n<p>Contact support for any questions you may have.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All requests to the NetBeez API must be authenticated using an API key. This key is passed via HTTP headers on every request.</p>\n<h2 id=\"generating-an-api-key\">Generating an API Key</h2>\n<p>NetBeez Administrators can create an API key from the NetBeez Dashboard:</p>\n<ol>\n<li>Navigate to Settings by clicking the cog icon located in the menu bar.</li>\n<li>Click on \"API Keys\" located in the left settings menu.</li>\n<li>Click the \"Generate API Key\" button and fill out the form.</li>\n</ol>\n<h2 id=\"required-headers\">Required Headers</h2>\n<p>Every authenticated request must include the following headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Authorization</code></td>\n<td><code>Bearer &lt;your_api_key&gt;</code></td>\n<td>Your generated API key, prefixed with <code>Bearer</code>. This header is required for all API requests.</td>\n</tr>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>Indicates that the request body (if any) is in JSON format.</td>\n</tr>\n<tr>\n<td><code>Cache-Control</code></td>\n<td><code>no-store</code></td>\n<td>Ensures responses are not cached.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"example\">Example</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer abc123def456\nContent-Type: application/json\nCache-Control: no-store\n</code></pre><p>Make sure to replace <code>abc123def456</code> with your actual API key. If the <code>Authorization</code> header is missing or contains an invalid key, the API will return a <code>401 Unauthorized</code> response.</p>\n<h1 id=\"using-postman\">Using Postman</h1>\n<p>We want to make exploring and utilizing our API easier for our customers. This is why we now provide our customers with a Postman project that can be downloaded onto your computer. This allows you to test out available APIs and can help you integrate NetBeez into your IT infrastructure.</p>\n<p>Download the project by clicking the \"Run in Postman\" button at the top of the page. Our Postman project uses variables to set the FQDN and API Key to your NetBeez Dashboard across all API calls in the project. To make it easier to use Postman for your NetBeez installation you can set up an environment for NetBeez. To learn how to do this <a href=\"https://www.youtube.com/watch?v=wArvaHYdw2I\">watch this video</a> from Postman. Add the following variables to your environment:</p>\n<ul>\n<li><code>HOSTNAME</code>: Set this to the FQDN of your NetBeez Dashboard.</li>\n<li><code>API_KEY</code>: Set this to a generated API Key. See the above Authentication section for more information.</li>\n</ul>\n<h1 id=\"future-api-changes-version-130\">Future API Changes (Version 13.0+)</h1>\n<p>We are implementing changes, starting in version 13.0, which will affect future versions of the API. These changes will go into effect for all new API changes we release and will be backward compatible with existing APIs for 2 versions after deprecation notices have been announced.</p>\n<ol>\n<li><p><code>POST</code> and <code>PUT</code> will be standardized into the same request format (JSONAPI) that we use for <code>GET</code> requests. This is to help streamline API consumption and also provide a very important update to how we manage relationships of data resources.</p>\n<ol>\n<li>With these changes, the API will allow for <a href=\"#folder-670b7e0c-98e4-44b6-9875-96233d01330b\">upserting and removal of relationships</a>, which means consumers of the API will no longer have to provide all relationship information when updating dependent data resources. See the reference section for more details.</li>\n</ol>\n</li>\n<li><p>Some endpoints include supplemental relationship data by default and that will no longer be the case going forward. This is to help reduce payload sizes in situations where included relationship data isn't needed by consumers of the API.</p>\n<ol>\n<li>Consumers of the API can still retrieve the relationship data, however, it will need to be specifically requested from the available options of an API call. For example, <a href=\"#request-4425180-f0ffc514-ddbd-45ef-ac52-fe08a86de944\">GET /agents</a> currently automatically includes <code>network_interface</code> information, and once updated with this change the API calls will need to specifically request <code>network_interface</code> information using <code>include=network_interface</code> query parameter.</li>\n</ol>\n</li>\n</ol>\n<h1 id=\"latest-version-141\">Latest Version: 14.1</h1>\n<p>See the <a href=\"#folder-4425180-057dfa24-071c-4d68-aaf5-df01e3cb302c\">changelog</a> for changes for the latest version of NetBeez.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Using Postman","slug":"using-postman"},{"content":"Future API Changes (Version 13.0+)","slug":"future-api-changes-version-130"},{"content":"Latest Version: 14.1","slug":"latest-version-141"}],"owner":"4425180","collectionId":"2497eaca-6106-40b1-acac-7366b290def4","publishedId":"SWTEbvow","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"444444","highlight":"000000"},"publishDate":"2020-02-18T19:49:30.000Z"},"item":[{"name":"Agent APIs","item":[{"name":"Agents","item":[{"name":"/agents","id":"f3d48709-5344-45b7-af9b-7b92feddd4ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Cache-Control","type":"text","value":"no-store"},{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://[HOSTNAME]/agents?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc&type=beta","description":"<p>This endpoint gives the ability to retrieve <code>agent</code> information for <code>agents</code> registered with the NetBeez server. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-85f1a1bf-d7fa-48df-a7e1-9704a1feb250\">Agent </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>The <code>stubbed</code> parameter provides a slimmed down version of <code>agent</code> attributes, see list of attributes above. <code>stubbed</code> will be one of the following values:</p>\n<ul>\n<li><code>true</code></li>\n<li><code>false</code></li>\n</ul>\n","type":"text/plain"},"key":"stubbed","value":"true"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>name</code>. This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"example name"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> by <code>name</code> based on a provided regex pattern. This filter will return any <code>agents</code> that match <code>name</code> to the provided regex.</p>\n","type":"text/plain"},"key":"filter[name][regex]","value":"exampleregex-[0-9]{2}$"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>category</code>. <code>category</code> can be one of the following values:</p>\n<ul>\n<li><code>network_agent</code></li>\n<li><code>remote_worker_agent</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>agent_classes</code>.  <code>agent_classes</code> include following categories: </p>\n<ul>\n<li><code>container</code></li>\n<li><code>faste</code></li>\n<li><code>wireless</code></li>\n<li><code>cumulus</code></li>\n<li><code>external</code></li>\n<li><code>gige</code></li>\n<li><code>software</code></li>\n<li><code>virtual</code></li>\n<li><code>mac</code></li>\n<li><code>windows</code></li>\n<li><code>igel</code></li>\n</ul>\n<p>You can filter on a single <code>agent_class</code> or multiple <code>agent_classes</code> by providing the <code>agent classes</code> as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"container"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>active</code> status. <code>active</code> will filter<code> agents</code> by if the <code>agent</code> is reachable or not.</p>\n","type":"text/plain"},"key":"filter[active]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>active_ts</code>.  This filter allows you to provide a single operator and value(s) to filter <code>active_ts</code> and <code>agents</code> that fall within the parameters.\nFor the <code>&lt;=&gt;</code>(between) operator use the <code>filter[active_ts][value1]</code> and <code>filter[active_ts][value2]</code> providing an epoch timestamp for each.\nFor the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[active_ts][value]</code> providing an epoch timestamp.</p>\n","type":"text/plain"},"key":"filter[active_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[active_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[active_ts][value]","value":"1650903779887"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[active_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[active_ts][value1]","value":"1650903779887"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[active_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[active_ts][value2]","value":"1650903779888"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>agent_groups</code>.  You can filter on a single <code>agent_group</code> or multiple <code>agent_groups</code> by providing the <code>agent_groups</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agent_groups]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>critical_alerts</code> minimum by providing a number. This filter can be used independently or in conjunction with <code>filter[critical_alerts][max]</code>.</p>\n","type":"text/plain"},"key":"filter[critical_alerts][min]","value":"0"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>critical_alerts</code> maximum by providing a number. This filter can be used independently or in conjunction with <code>filters[critical_alerts][min]</code>.</p>\n","type":"text/plain"},"key":"filter[critical_alerts][max]","value":"5"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>warning_alerts</code> minimum by providing a number. This filter can be used independently or in conjunction with <code>filter[warning_alerts][max]</code>.</p>\n","type":"text/plain"},"key":"filter[warning_alerts][min]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>warning_alerts</code> maximum by providing a number. This filter can be used independently or in conjunction with <code>filters[warning_alerts][min]</code>.</p>\n","type":"text/plain"},"key":"filter[warning_alerts][max]","value":"4"},{"disabled":true,"description":{"content":"<p><em>Depreciated</em>: This filter has been renamed to filter[in_incident]. filter[in_incident] will no longer work in 16.0.x.</p>\n<p>Filter <code>agents</code> based on whether or not they have an open incident at the time of the request.</p>\n","type":"text/plain"},"key":"filter[open_incident]","value":"false"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on whether or not they have an open incident at the time of the request.</p>\n","type":"text/plain"},"key":"filter[in_incident]","value":"false"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>name</code></li>\n<li><code>agent_class</code></li>\n<li><code>software_version</code></li>\n<li><code>active</code> (status)</li>\n<li><code>open_incident</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"name"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"key":"type","value":"beta"}],"variable":[]}},"response":[{"id":"4b26b835-b11e-4764-9264-a20833406e25","name":"Filter by name, active, and category","originalRequest":{"method":"GET","header":[{"key":"Cache-Control","value":"no-store"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents?filter[name]=My WiFi Agent&filter[categories]=network_agent&filter[active]=true&page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc&type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["agents"],"query":[{"key":"filter[name]","value":"My WiFi Agent","description":"Filter `agents` based on `name`. This filter is a string search, any string matches for `name` will be provided."},{"key":"filter[categories]","value":"network_agent","description":"Filter `agents` based on `category`. `category` can be one of the following values:\n- `network_agent`\n- `remote_worker_agent`"},{"key":"filter[active]","value":"true","description":"Filter `agents` based on `active` status. `active` will filter` agents` by if the `agent` is reachable or not."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned."},{"key":"page[limit]","value":"25","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25."},{"key":"order[attributes]","value":"name","description":"Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with `order[direction]`.  You may only order attributes in the same direction.  Available attributes for ordering are:\n\n- `id`\n- `name`\n- `agent_class`\n- `software_version`\n- `active` (status)\n"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"type","value":"beta"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n      {\n        \"id\": \"32\",\n        \"type\": \"agent\",\n        \"attributes\": {\n          \"name\": \"My WiFi Agent\",\n          \"reached_target_test_limit\": false,\n          \"reached_scheduled_test_limit\": false,\n          \"isp_name\": null,\n          \"isp_asn\": null,\n          \"nb_target_ids\": [\n            198,\n            199\n          ],\n          \"nb_test_ids\": [],\n          \"agent_type_name\": \"rpi-model-b-plus-2\",\n          \"os_version\": null,\n          \"kernel_version\": null,\n          \"created_at\": \"2023-04-27T20:08:52.000Z\",\n          \"uuid\": \"dummy-wifi-agent\",\n          \"agent_class\": \"wireless\",\n          \"active\": true,\n          \"active_ts\": 1683661910832,\n          \"description\": null,\n          \"category\": \"network_agent\",\n          \"software_version\": \"11.1\",\n          \"open_incident_id\": null,\n          \"test_aggregate_counts_by_type\": {\n              \"1\": {\n                \"success\": 0,\n                \"fail\": 0,\n                \"warning\": 0,\n                \"paused\": 0,\n                \"unknown\": 0\n              },\n              \"2\": {\n                \"success\": 0,\n                \"fail\": 0,\n                \"warning\": 0,\n                \"paused\": 0,\n                \"unknown\": 0\n              },\n              \"3\": {\n                \"success\": 0,\n                \"fail\": 0,\n                \"warning\": 0,\n                \"paused\": 0,\n                \"unknown\": 0\n              },\n              \"4\": {\n                \"success\": 0,\n                \"fail\": 0,\n                \"warning\": 0,\n                \"paused\": 0,\n                \"unknown\": 0\n              },\n              \"9\": {\n                \"success\": 0,\n                \"fail\": 0,\n                \"warning\": 0,\n                \"paused\": 0,\n                \"unknown\": 0\n              }\n          },\n          \"wifi_hopping_group_id\": null\n        },\n        \"relationships\": {\n          \"scheduled_nb_test_templates\": {\n            \"data\": [\n              {\n                  \"id\": \"1\",\n                  \"type\": \"scheduled_nb_test_template\"\n              }\n            ]\n          },\n          \"network_interfaces\": {\n            \"data\": [\n              {\n                  \"id\": \"27\",\n                  \"type\": \"network_interface\"\n              }\n            ]\n          },\n          \"agent_groups\": {\n            \"data\": [\n              {\n                  \"id\": \"3\",\n                  \"type\": \"agent_group\"\n              }\n            ]\n          }\n        }\n      }\n  ],\n  \"included\": [\n    {\n      \"id\": \"27\",\n      \"type\": \"network_interface\",\n      \"attributes\": {\n          \"key\": \"eth0\",\n          \"mac\": \"00:00:00:00:00:01\",\n          \"ip_address\": \"1.2.3.42\",\n          \"interface_type\": \"wired\",\n          \"model\": \"WIRED Model XX - Driver version XXX\",\n          \"vendor\": \"XX Dummy Vendor 28384 XX\",\n          \"gateway\": \"192.168.0.1\",\n          \"netmask\": \"255.255.255.0\",\n          \"speed\": null,\n          \"duplex\": null,\n          \"speed_duplex_is_auto\": null,\n          \"dhcp\": true,\n          \"mtu\": 1500,\n          \"dns_server1\": \"1.1.1.1\",\n          \"dns_server2\": null,\n          \"connected\": true,\n          \"ipv6_address\": null,\n          \"ipv6_enabled\": false,\n          \"external_ip\": \"108.32.61.173\"\n      },\n      \"relationships\": {}\n    }\n  ],\n  \"meta\": {\n      \"filters\": {\n          \"matched_resources\": 1\n      },\n      \"page\": {\n          \"offset\": 1,\n          \"limit\": 25,\n          \"total\": 1\n      }\n  }\n}"}],"_postman_id":"f3d48709-5344-45b7-af9b-7b92feddd4ec"},{"name":"/agents/:id","id":"0eb243a7-90d1-4e94-a420-a65da17b160a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/agents/:id?type=beta","description":"<p>This endpoint gives the ability to retrieve a specific <code>agent</code> information registered with the NetBeez server.</p>\n<p>See the <a href=\"#folder-85f1a1bf-d7fa-48df-a7e1-9704a1feb250\">Agent </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":id"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"83ab2a70-90a4-498e-b354-a69d76730862","name":"Get full agent details for specific id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/agents/:id?type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":id"],"query":[{"key":"type","value":"beta"}],"variable":[{"key":"id","value":"305","description":"Provide the `id` of the `agent` you wish to retrieve."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"305\",\n        \"type\": \"agent\",\n        \"attributes\": {\n            \"name\": \"Shadyside\",\n            \"reached_target_test_limit\": false,\n            \"reached_scheduled_test_limit\": false,\n            \"isp_name\": \"Verizon Business\",\n            \"isp_asn\": \"AS701\",\n            \"nb_target_ids\": [\n                37,\n                478,\n                461\n            ],\n            \"nb_test_ids\": [\n                1497599,\n                1497600,\n                1497601,\n                1497604,\n                1844147,\n                1897341,\n                1897342,\n                1964947\n            ],\n            \"logged_in_user\": null,\n            \"agent_type_name\": \"rpi-model-b-3\",\n            \"os_version\": \"Raspbian GNU/Linux 9.11 (stretch)\",\n            \"kernel_version\": \"#1253 Thu Aug 15 11:37:30 BST 2019\",\n            \"created_at\": \"2020-07-29T13:07:31.000Z\",\n            \"uuid\": \"e8ba8b24-9291-4678-980a-e6c07cb2787d\",\n            \"agent_class\": \"faste\",\n            \"active\": true,\n            \"active_ts\": 1636031862571,\n            \"description\": null,\n            \"category\": \"network_agent\",\n            \"software_version\": \"12.0.3\",\n            \"open_incident_id\": null,\n            \"test_aggregate_counts_by_type\": {\n                \"1\": {\n                    \"success\": 3,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"2\": {\n                    \"success\": 2,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"3\": {\n                    \"success\": 1,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"4\": {\n                    \"success\": 1,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"9\": {\n                    \"success\": 1,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                }\n            }\n        },\n        \"relationships\": {\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            },\n            \"network_interfaces\": {\n                \"data\": [\n                    {\n                        \"id\": \"338\",\n                        \"type\": \"network_interface\"\n                    }\n                ]\n            },\n            \"open_incident\": {\n                \"data\": null\n            },\n            \"scheduled_nb_test_templates\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"338\",\n            \"type\": \"network_interface\",\n            \"attributes\": {\n                \"key\": \"eth0\",\n                \"mac\": \"b8:27:eb:19:c9:62\",\n                \"ip_address\": \"192.168.0.218\",\n                \"interface_type\": \"wired\",\n                \"model\": \"10/100\",\n                \"vendor\": \"Microchip SMSC LAN9513-JZX\",\n                \"gateway\": \"192.168.0.1\",\n                \"netmask\": \"255.255.255.0\",\n                \"speed\": \"100\",\n                \"duplex\": \"full\",\n                \"speed_duplex_is_auto\": true,\n                \"dhcp\": true,\n                \"mtu\": 1500,\n                \"dns_server1\": \"192.168.0.1\",\n                \"dns_server2\": \"\",\n                \"connected\": true,\n                \"ipv6_address\": \"fe80::e263:3bef:7c83:35dc\",\n                \"ipv6_enabled\": true,\n                \"external_ip\": \"74.98.231.130\"\n            },\n            \"relationships\": {}\n        }\n    ]\n}"}],"_postman_id":"0eb243a7-90d1-4e94-a420-a65da17b160a"},{"name":"/agents/:id","id":"674fa6e5-f666-4761-a979-19932113db41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://[HOSTNAME]/agents/:id?type=beta","description":"<p>This endpoint gives the ability to delete a specific <code>agent</code>. This will removed <code>agent</code> from the NetBeez dashboard and queued to be permanently deleted. All agent associated data (eg. results, statistics, metrics, etc.) will also be permanently deleted.</p>\n<p><strong>Note</strong>: Please ensure the <code>agent</code> has been disconnected from the network before deleting the <code>agent</code>, otherwise the <code>agent</code> may re-register with the NetBeez server.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":id"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to delete.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"674fa6e5-f666-4761-a979-19932113db41"},{"name":"/agents/:id","id":"5fd491f6-2b2b-476e-bbbf-207c1e97d785","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"agent\": {\n        \"name\": \"agent 1\"\n    }\n}"},"url":"https://[HOSTNAME]/agents/:id?type=beta","description":"<p>This endpoint gives the ability to update specific <code>agent</code> information for an <code>agent</code> registred with the NetBeez server.</p>\n<p>See the <a href=\"#folder-85f1a1bf-d7fa-48df-a7e1-9704a1feb250\">Agent </a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":id"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"5fd491f6-2b2b-476e-bbbf-207c1e97d785"},{"name":"/agents/:id (jsonapi)","id":"468b8145-8904-4e9f-91b9-a746a9bd3d4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"data\": {\n        \"id\": \"2\",\n        \"type\": \"agent\",\n        \"attributes\": {\n            \"name\": \"RWA Mac\"\n        }\n    }\n}"},"url":"https://[HOSTNAME]/agents/:id?type=beta","description":"<p>This endpoint gives the ability to update specific <code>agent</code> information for an <code>agent</code> registred with the NetBeez server.</p>\n<p>See the <a href=\"#folder-85f1a1bf-d7fa-48df-a7e1-9704a1feb250\">Agent </a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":id"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"722e779e-0822-4f1b-a099-7b8d4dfd5db7","name":"Rename Agent","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer [API_KEY]"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": \"142\",\n    \"type\": \"agent\",\n    \"attributes\": {\n      \"name\": \"New Agent Name\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://[HOSTNAME]/agents/:id?type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":id"],"query":[{"key":"type","value":"beta"}],"variable":[{"key":"id","value":"142"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""},{"key":"Authorization","value":"Bearer [API_KEY]","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"142\",\n        \"type\": \"agent\",\n        \"attributes\": {\n            \"name\": \"New Agent Name\",\n            \"reached_target_test_limit\": false,\n            \"reached_scheduled_test_limit\": false,\n            \"isp_name\": \"Verizon Business\",\n            \"isp_asn\": \"AS701\",\n            \"nb_target_ids\": [\n                15,\n                27,\n                29,\n                37\n            ],\n            \"nb_test_ids\": [\n                34238,\n                34239,\n                34240,\n                34241,\n                34266,\n                34267,\n                34513,\n                34514,\n                34515\n            ],\n            \"logged_in_user\": \"\",\n            \"in_incident\": false,\n            \"agent_type_name\": \"container\",\n            \"os_version\": \"Debian GNU/Linux 11 (bullseye)\",\n            \"kernel_version\": \"#1 SMP Tue Jan 21 10:23:32 UTC 2025\",\n            \"created_at\": \"2025-03-17T19:48:50.000Z\",\n            \"uuid\": \"4b7d87f6-7be2-4b77-be55-c94f74ae300f\",\n            \"agent_class\": \"container\",\n            \"active\": false,\n            \"active_ts\": 1742241089689,\n            \"description\": null,\n            \"category\": \"network_agent\",\n            \"software_version\": \"14.4.1\",\n            \"open_incident_id\": null,\n            \"test_aggregate_counts_by_type\": {\n                \"1\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 4\n                },\n                \"2\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 2\n                },\n                \"3\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 2\n                },\n                \"4\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"9\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 1\n                }\n            }\n        },\n        \"relationships\": {\n            \"active_monitoring_conditions\": {\n                \"data\": []\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            },\n            \"network_interfaces\": {\n                \"data\": [\n                    {\n                        \"id\": \"142\",\n                        \"type\": \"network_interface\"\n                    }\n                ]\n            },\n            \"open_incident\": {\n                \"data\": null\n            },\n            \"scheduled_nb_test_templates\": {\n                \"data\": []\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"142\",\n            \"type\": \"network_interface\",\n            \"attributes\": {\n                \"key\": \"eth0\",\n                \"mac\": \"02:42:ac:11:00:02\",\n                \"ip_address\": \"172.17.0.2\",\n                \"interface_type\": \"wired\",\n                \"model\": \"10/100\",\n                \"vendor\": \"\",\n                \"gateway\": \"172.17.0.1\",\n                \"netmask\": \"255.255.0.0\",\n                \"speed\": \"10000\",\n                \"duplex\": \"full\",\n                \"speed_duplex_is_auto\": false,\n                \"dhcp\": false,\n                \"mtu\": 65535,\n                \"dns_server1\": \"192.168.65.7\",\n                \"dns_server2\": \"\",\n                \"connected\": true,\n                \"ipv6_address\": null,\n                \"ipv6_enabled\": true,\n                \"external_ip\": \"74.111.183.25\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"142\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"468b8145-8904-4e9f-91b9-a746a9bd3d4b"},{"name":"/agents","id":"544fd071-4664-4489-8fe7-a12c76a76dcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"agents\": [\n        {\n            \"id\": 1,\n            \"name\": \"agent 1\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"agent 2\"\n        }\n    ]\n}"},"url":"https://[HOSTNAME]/agents?type=beta","description":"<p>This endpoint gives the ability to update a specific <code>agents</code> information that is registered with the NetBeez server.</p>\n<p>See the <a href=\"#folder-85f1a1bf-d7fa-48df-a7e1-9704a1feb250\">Agent </a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[]}},"response":[{"id":"86450b58-bb4c-448c-96d8-88e809979ca1","name":"/agents","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"agents\": [\n        {\n            \"id\": 142,\n            \"name\": \"Shadyside\"\n        },\n        {\n            \"id\": 143,\n            \"name\": \"Sarasota\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://[HOSTNAME]/agents?type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["agents"],"query":[{"key":"type","value":"beta"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": null,\n        \"type\": \"agent_update\",\n        \"attributes\": {\n            \"resource\": \"agent\",\n            \"update_count\": 2,\n            \"record_count\": 2,\n            \"failures\": []\n        }\n    }\n}"}],"_postman_id":"544fd071-4664-4489-8fe7-a12c76a76dcb"},{"name":"agents/:agent_id/reboot","id":"ad084eea-2a06-4107-840b-6577773b6876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://[HOSTNAME]/agents/:agent_id/reboot.json?type=beta","description":"<p>Use this API endpoint to send a reboot signal to a specific agent.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","reboot.json"],"host":["[HOSTNAME]"],"query":[{"key":"type","value":"beta"}],"variable":[{"type":"any","value":"1","key":"agent_id"}]}},"response":[],"_postman_id":"ad084eea-2a06-4107-840b-6577773b6876"}],"id":"4e9cf83e-805a-49e7-bc4e-56e31c064a6d","event":[{"listen":"prerequest","script":{"id":"df7e2c6e-b4cb-49c6-a9c5-c74c240419b9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c832577f-7d96-4d36-916d-a13ceed50e01","type":"text/javascript","exec":[""]}}],"_postman_id":"4e9cf83e-805a-49e7-bc4e-56e31c064a6d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Agent Groups","item":[{"name":"/agent_groups","id":"2441a2e7-268b-4746-be96-c3094014cbef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/agent_groups?page[offset]=1&page[limit]=25","description":"<p>This endpoint gives the ability to retrieve <code>agent_group</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-4425180-844cc866-5a41-4b37-939d-2c8ef6dbcfa8\">Agent Group</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agent_groups"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>agent_groups</code> based on <code>name</code>. This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"example name"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"}],"variable":[]}},"response":[{"id":"01973b42-b457-47b7-9715-16e0e5b49beb","name":"Get agent groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agent_groups?page[offset]=1&page[limit]=2","protocol":"https","host":["[HOSTNAME]"],"path":["agent_groups"],"query":[{"key":"filter[name]","value":"example name","description":"Filter `agent_groups` based on `name`. This filter is a string search, any string matches for `name` will be provided.","disabled":true},{"key":"filter[ids]","value":"1,2","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned."},{"key":"page[limit]","value":"2","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"[Office] Pittsburgh\",\n                \"auto_assign\": false,\n                \"agents_count\": 4,\n                \"targets_count\": 0\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"279\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"280\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"297\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"305\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"[Office] International Locations\",\n                \"auto_assign\": false,\n                \"agents_count\": 1,\n                \"targets_count\": 0\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"226\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"External Agents\",\n                \"auto_assign\": false,\n                \"agents_count\": 1,\n                \"targets_count\": 0\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"54\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"[Office] San Jose\",\n                \"auto_assign\": false,\n                \"agents_count\": 1,\n                \"targets_count\": 0\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"249\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"Default Group\",\n                \"auto_assign\": true,\n                \"agents_count\": 14,\n                \"targets_count\": 3\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"226\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"280\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"279\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"54\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"249\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"297\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"341\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"345\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"426\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"427\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"429\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"442\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"443\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"444\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": [\n                        {\n                            \"id\": \"437\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"32\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"478\",\n                            \"type\": \"target\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"Remote Workers\",\n                \"auto_assign\": false,\n                \"agents_count\": 1,\n                \"targets_count\": 2\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"424\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": [\n                        {\n                            \"id\": \"478\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"32\",\n                            \"type\": \"target\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"ANTON HOME\",\n                \"auto_assign\": false,\n                \"agents_count\": 0,\n                \"targets_count\": 8\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": []\n                },\n                \"nb_targets\": {\n                    \"data\": [\n                        {\n                            \"id\": \"487\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"488\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"486\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"484\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"485\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"489\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"491\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"492\",\n                            \"type\": \"target\"\n                        }\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"agent_group\",\n            \"attributes\": {\n                \"name\": \"Donovan\",\n                \"auto_assign\": false,\n                \"agents_count\": 1,\n                \"targets_count\": 8\n            },\n            \"relationships\": {\n                \"agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"442\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"nb_targets\": {\n                    \"data\": [\n                        {\n                            \"id\": \"465\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"463\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"32\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"479\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"462\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"37\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"36\",\n                            \"type\": \"target\"\n                        },\n                        {\n                            \"id\": \"507\",\n                            \"type\": \"target\"\n                        }\n                    ]\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"2441a2e7-268b-4746-be96-c3094014cbef"},{"name":"/agent_groups/:id","id":"76cae611-d219-489d-a633-7406aa04b93d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://[HOSTNAME]/agent_groups/:id","description":"<p>This endpoint gives the ability to retrieve a specific <code>agent_group</code> information.</p>\n<p>See the <a href=\"#folder-4425180-844cc866-5a41-4b37-939d-2c8ef6dbcfa8\">Agent Group</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agent_groups",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the<code>id</code> of the <code>agent_group</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"d54df287-39f5-4879-8407-cce3c3081482","name":"Get agent group by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agent_groups/:id","protocol":"https","host":["[HOSTNAME]"],"path":["agent_groups",":id"],"variable":[{"key":"id","value":"1","description":"Provide the`id` of the `agent_group` you wish to retrieve."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"[Office] Pittsburgh\",\n            \"auto_assign\": false,\n            \"agents_count\": 4,\n            \"targets_count\": 0\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"279\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"305\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"nb_targets\": {\n                \"data\": []\n            }\n        }\n    }\n}"}],"_postman_id":"76cae611-d219-489d-a633-7406aa04b93d"},{"name":"/agent_groups","id":"ee5460b3-b05c-4db9-824b-8ec103cfe306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"agent group name\",\n            \"auto_assign\": false,\n            \"force\": false\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"type\": \"agent\",\n                        \"id\": \"13\"\n                    },\n                    {\n                        \"type\": \"agent\",\n                        \"id\": \"9\"\n                    }\n                ]\n            },\n            \"targets\": {\n                \"data\": []\n            },\n            \"scheduled_test_templates\": {\n                \"data\": []\n            }\n        }\n    }\n}"},"url":"https://[HOSTNAME]/agent_groups","description":"<p>This endpoint gives the ability to create a specific <code>agent_group</code> information.</p>\n<p>See the <a href=\"#folder-4425180-844cc866-5a41-4b37-939d-2c8ef6dbcfa8\">Agent Group</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agent_groups"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"6472bcd9-ac73-4ca1-a542-bc4b279810d2","name":"Create new agent group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"agent group name\",\n            \"auto_assign\": false,\n            \"force\": false\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"type\": \"agent\",\n                        \"id\": \"13\"\n                    },\n                    {\n                        \"type\": \"agent\",\n                        \"id\": \"9\"\n                    }\n                ]\n            },\n            \"targets\": {\n                \"data\": []\n            },\n            \"scheduled_test_templates\": {\n                \"data\": []\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/agent_groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"agent group name\",\n            \"auto_assign\": false,\n            \"agents_count\": 2,\n            \"targets_count\": 1\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"nb_targets\": {\n                \"data\": [\n                    {\n                        \"id\": \"437\",\n                        \"type\": \"target\"\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"ee5460b3-b05c-4db9-824b-8ec103cfe306"},{"name":"/agent_groups/:id","id":"14168ed9-ed1d-42c3-8c17-0f78682b6269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"[Office] Pittsburgh\"\n        }\n    }\n}"},"url":"https://[HOSTNAME]/agent_groups/:id","description":"<p>This endpoint gives the ability to update a specific <code>agent_group</code> information.</p>\n<p>See the <a href=\"#folder-4425180-844cc866-5a41-4b37-939d-2c8ef6dbcfa8\">Agent Group</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agent_groups",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent_group</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"b61b251c-ec8c-4a9f-bf48-0380604186c6","name":"Rename agent group","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"[Office] Pittsburgh\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://[HOSTNAME]/agent_groups/:id","protocol":"https","host":["[HOSTNAME]"],"path":["agent_groups",":id"],"variable":[{"key":"id","value":"1","description":"Provide the `id` of the `agent_group` you wish to update."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"agent_group\",\n        \"attributes\": {\n            \"name\": \"[Office] Pittsburgh\",\n            \"auto_assign\": false,\n            \"agents_count\": 4,\n            \"targets_count\": 0\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"279\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"305\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"nb_targets\": {\n                \"data\": []\n            }\n        }\n    }\n}"}],"_postman_id":"14168ed9-ed1d-42c3-8c17-0f78682b6269"}],"id":"72f8008d-9140-4416-adee-d097d56cb07c","event":[{"listen":"prerequest","script":{"id":"f1c75f85-e4c5-437a-afe4-2d5b0dadf620","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2842c3a0-4ca2-42f7-bcf3-5ae9fc8d8c25","type":"text/javascript","exec":[""]}}],"_postman_id":"72f8008d-9140-4416-adee-d097d56cb07c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Agent Logs","item":[{"name":"/agents/:agent_id/logs","id":"6b6f0946-7298-45ad-af8b-1666fdbc8c4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/agents/:agent_id/logs?order[attributes]=source&order[direction]=desc&page[offset]=1&page[limit]=25","description":"<p>This endpoint gives the ability to retreive <code>agent_log</code> information for a specified <code>agent</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-afc59bcd-89ce-4f07-8801-9270937fbcf7\">Agent Log</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","logs"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>source</code>.  You can filter on a single <code>source</code> or multiple <code>sources</code> by providing the <code>sources</code> as a comma separated list.  Available <code>sources</code> are:</p>\n<ul>\n<li><code>alerts</code></li>\n<li><code>wpa_supplicant</code></li>\n<li><code>dhcp</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[source]","value":"wpa_supplicant,dhcp"},{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>severity</code>.  <code>severity</code> follows syslog <code>severity</code> categories:  </p>\n<ul>\n<li>0: <code>emergency</code></li>\n<li>1: <code>alert</code></li>\n<li>2: <code>critical</code></li>\n<li>3: <code>error</code></li>\n<li>4: <code>warning</code></li>\n<li>5: <code>notice</code></li>\n<li>6: <code>info</code></li>\n<li>7: <code>debug</code></li>\n</ul>\n<p>You can filter on a single <code>severity</code> or multiple <code>severities</code> by providing the <code>severities</code> as a comma separated list.  Number (6,7) or string (info,debug) representations for <code>severity</code> can be provided. </p>\n","type":"text/plain"},"key":"filter[severity]","value":"critical,error"},{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>network_interface</code>.  You can filter on a single <code>network_interface</code> or multiple <code>network_interfaces</code> as a comma separated list.  Available <code>network_interfaces</code> are:</p>\n<ul>\n<li><code>eth0</code></li>\n<li><code>wlan0</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interface]","value":"wlan0"},{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>event_code</code>.   This filter is a string search, any string matches for <code>event_code</code> will be provided.  Examples:</p>\n<ul>\n<li>\"CTRL-EVENT-DISCONNECT\"</li>\n<li>\"DISCONNECT\"</li>\n<li>\" CONN\"</li>\n</ul>\n","type":"text/plain"},"key":"filter[event_code]","value":"DISCONNECT"},{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>message</code>.   This filter is a string search, any string matches for <code>message</code> will be provided.  Examples:</p>\n<ul>\n<li>\"dhcp\"</li>\n<li>\"SSID\"</li>\n<li>\"dhclient\"</li>\n</ul>\n","type":"text/plain"},"key":"filter[message]","value":"dhclient"},{"disabled":true,"description":{"content":"<p>Filter <code>agent_log</code> based on <code>occurred_at</code>.  This filter allows you to provide a single operator and value(s) to filter <code>occurred_at</code> and <code>agent_logs</code> that fall within the parameters.  </p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[occurred_at][value1]</code> and <code>filter[occurred_at][value2]</code> providing a unix timestamp for each.  </p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[occurred_at][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[occurred_at][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[occurred_at][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[occurred_at][value]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[occurred_at][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[occurred_at][value1]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[occurred_at][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[occurred_at][value2]","value":"1580317934265"},{"disabled":true,"description":{"content":"<p>This parameter will allow for the inclusion of any <code>alerts</code> generated for the specified <code>agent</code>. By default <code>alerts</code> are not included. Available values are:</p>\n<ul>\n<li><code>true</code></li>\n<li><code>false</code></li>\n</ul>\n","type":"text/plain"},"key":"included[alerts]","value":"true"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>severity</code></li>\n<li><code>message</code></li>\n<li><code>source</code></li>\n<li><code>event_code</code></li>\n<li><code>occurred_at</code></li>\n<li><code>network_interface_key</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"source"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve <code>agent_logs</code> for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"agent_id"}]}},"response":[{"id":"8b3f6e58-ea92-4cf3-8fb2-f65c9062b1d7","name":"Get all the DISCONNECT logs for a specific agent","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents/:agent_id/logs?filter[event_code]=DISCONNECT&order[attributes]=occured_at&order[direction]=desc&page[offset]=1&page[limit]=10","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":agent_id","logs"],"query":[{"key":"filter[source]","value":"wpa_supplicant,dhcp","description":"Filter `agent_log` based on `source`.  You can filter on a single `source` or multiple `sources` by providing the `sources` as a comma separated list.  Available `sources` are:\n\n- `alerts`\n- `wpa_supplicant`\n- `dhcp`","disabled":true},{"key":"filter[severity]","value":"critical,error","description":"Filter `agent_log` based on `severity`.  `severity` follows syslog `severity` categories:  \n\n- 0: `emergency`\n- 1: `alert`\n- 2: `critical`\n- 3: `error`\n- 4: `warning`\n- 5: `notice`\n- 6: `info`\n- 7: `debug`\n\nYou can filter on a single `severity` or multiple `severities` by providing the `severities` as a comma separated list.  Number (6,7) or string (info,debug) representations for `severity` can be provided. ","disabled":true},{"key":"filter[network_interface]","value":"wlan0","description":"Filter `agent_log` based on `network_interface`.  You can filter on a single `network_interface` or multiple `network_interfaces` as a comma separated list.  Available `network_interfaces` are:\n\n- `eth0`\n- `wlan0`\n","disabled":true},{"key":"filter[event_code]","value":"DISCONNECT","description":"Filter `agent_log` based on `event_code`.   This filter is a string search, any string matches for `event_code` will be provided.  Examples:\n\n- \"CTRL-EVENT-DISCONNECT\"\n- \"DISCONNECT\"\n- \" CONN\""},{"key":"filter[message]","value":"dhclient","description":"Filter `agent_log` based on `message`.   This filter is a string search, any string matches for `message` will be provided.  Examples:\n\n- \"dhcp\"\n- \"SSID\"\n- \"dhclient\"","disabled":true},{"key":"filter[occurred_at][operator]","value":"<=>","description":"Filter `agent_log` based on `occurred_at`.  This filter allows you to provide a single operator and value(s) to filter `occurred_at` and `agent_logs` that fall within the parameters.  \n\nFor the `<=>`(between) operator use the `filter[occurred_at][value1]` and `filter[occurred_at][value2]` providing a unix timestamp for each.  \n\nFor the `<=,<,>,>=` operators use the `filter[occurred_at][value]` providing a unix timestamp.","disabled":true},{"key":"filter[occurred_at][value]","value":"1580314348750","description":"Use if `filter[occurred_at][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[occurred_at][value1]","value":"1580314348750","description":"Use if `filter[occurred_at][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[occurred_at][value2]","value":"1580317934265","description":"Use if `filter[occurred_at][operator]` is provided and is `<=>`.","disabled":true},{"key":"included[alerts]","value":"true","description":"This parameter will allow for the inclusion of any `alerts` generated for the specified `agent`. By default `alerts` are not included. Available values are:\n\n- `true`\n- `false`","disabled":true},{"key":"order[attributes]","value":"occured_at","description":"Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with `order[direction]`.  You may only order attributes in the same direction.  Available attributes for ordering are:\n\n- `id`\n- `severity`\n- `message`\n- `source`\n- `event_code`\n- `occurred_at`\n- `network_interface_key`"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned."},{"key":"page[limit]","value":"10","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25."}],"variable":[{"key":"agent_id","value":"345","description":"Provide the `id` of the `agent` you wish to retrieve `agent_logs` for."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"41910785\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695614427453,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695614427.449905: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:04:88:97:00 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911123\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695616230268,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695616230.267745: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:22:11 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911316\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695618070320,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695618070.319452: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:04:88:97:00 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911463\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695619827287,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695619827.287238: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:22:11 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911582\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695619827287,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695619827.287238: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:22:11 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911717\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695621631001,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695621631.000492: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:04:88:97:00 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41911889\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695623431948,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695623431.947707: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:22:11 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41912124\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695625269429,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695625269.429048: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:04:88:97:00 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41912188\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695625337490,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695625337.489176: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:21:01 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"41912272\",\n            \"type\": \"agent_log\",\n            \"attributes\": {\n                \"source\": \"wpa_supplicant\",\n                \"severity\": \"warning\",\n                \"occurred_at\": 1695627029458,\n                \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n                \"message\": \"1695627029.457728: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:14:ae:22:11 reason=3 locally_generated=1\",\n                \"network_interface_key\": \"wlan0\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"event_code\": \"DISCONNECT\"\n        },\n        \"order\": {\n            \"attributes\": \"occured_at\",\n            \"direction\": \"desc\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 10,\n            \"total\": 54\n        }\n    }\n}"}],"_postman_id":"6b6f0946-7298-45ad-af8b-1666fdbc8c4c"},{"name":"/agents/:agent_id/logs/:id","id":"c6519192-69ce-441f-959d-ed605e7f10b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://[HOSTNAME]/agents/:agent_id/logs/:id","description":"<p>This endpoint gives the ability to retreive a specific <code>agent_log</code> for a specified <code>agent</code>.</p>\n<p>See the <a href=\"#folder-afc59bcd-89ce-4f07-8801-9270937fbcf7\">Agent Log</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","logs",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve <code>agent_logs</code> for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"agent_id"},{"description":{"content":"<p>Provide the<code>id</code> of the <code>agent_log</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"869710da-73ee-4a34-8175-9ad6306c8fa5","name":"Get a specific agent log by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents/:agent_id/logs/:id","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":agent_id","logs",":id"],"variable":[{"key":"agent_id","value":"345","description":"Provide the `id` of the `agent` you wish to retrieve `agent_logs` for."},{"key":"id","value":"41911717","description":"Provide the`id` of the `agent_log` you wish to retrieve."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"41911717\",\n        \"type\": \"agent_log\",\n        \"attributes\": {\n            \"source\": \"wpa_supplicant\",\n            \"severity\": \"warning\",\n            \"occurred_at\": 1695621631001,\n            \"event_code\": \"CTRL-EVENT-DISCONNECTED\",\n            \"message\": \"1695621631.000492: wlan0: CTRL-EVENT-DISCONNECTED bssid=8a:15:04:88:97:00 reason=3 locally_generated=1\",\n            \"network_interface_key\": \"wlan0\"\n        },\n        \"relationships\": {\n            \"agent\": {\n                \"data\": {\n                    \"id\": \"345\",\n                    \"type\": \"agent\"\n                }\n            },\n            \"network_interface\": {\n                \"data\": {\n                    \"id\": \"393\",\n                    \"type\": \"network_interface\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c6519192-69ce-441f-959d-ed605e7f10b3"}],"id":"09ca410e-c233-4013-a4b0-c0e876dfa9a5","event":[{"listen":"prerequest","script":{"id":"3cb2940c-f7ac-4cc3-a9c9-e2cdce984b43","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"de3e2368-14d7-4c45-8a50-b85757365385","type":"text/javascript","exec":[""]}}],"_postman_id":"09ca410e-c233-4013-a4b0-c0e876dfa9a5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Access Point Connections","item":[{"name":"/agents/:agent_id/access_point_connections","id":"2335615c-a84a-4e45-a9db-24d5245892f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://[HOSTNAME]/agents/:agent_id/access_point_connections?order[attributes]=ts_start&order[direction]=desc&page[offset]=1&page[limit]=5","description":"<p>This endpoint gives the ability to retreive <code>access_point_connection</code> information for a specified <code>agent</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-55edb112-cd38-41ef-baab-9344cc30cd3a\">Access Point Connection</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","access_point_connections"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>access_point_connections</code> based on <code>ts_start</code>.  This filter allows you to provide a single operator and value(s) to filter <code>ts_start</code> and <code>access_point_connections</code> that fall within the parameters.  </p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts_start][value1]</code> and <code>filter[ts_start][value2]</code> providing an epoch timestamp for each.  </p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts_start][value]</code> providing an epoch timestamp.</p>\n","type":"text/plain"},"key":"filter[ts_start][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts_start][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts_start][value]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts_start][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts_start][value1]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts_start][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts_start][value2]","value":"1580317934265"},{"disabled":true,"description":{"content":"<p>Filter <code>access_point_connections</code> based on <code>wifi_profiles</code>.  You can filter on a single <code>wifi_profile</code> or multiple <code>wifi_profiles</code> by providing the <code>wifi_profiles</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[wifi_profiles]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Use <code>filter[error_states]</code> to filter only the <code>access_point_connections</code> which have any of the specified error_states. One or more of <code>association</code>, <code>authentication</code> and <code>dhcp</code>.</p>\n","type":"text/plain"},"key":"filter[error_states]","value":"association,authentication,dhcp"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>ts_attached</code></li>\n<li><code>ts_detached</code></li>\n<li><code>dhcp_acquisition_duration</code></li>\n<li><code>network_connectivity_validation</code></li>\n<li><code>state</code></li>\n<li><code>ts_start</code></li>\n<li><code>wpa_association_duration</code></li>\n<li><code>wpa_authentication_duration</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"ts_start"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"5"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve <code>access_point_connections</code> for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"agent_id"}]}},"response":[{"id":"869d55f4-a393-4fb1-87a6-bb995700de6c","name":"Get connections that failed on dhcp","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents/:agent_id/access_point_connections?filter[error_states]=dhcp&order[attributes]=ts_start&order[direction]=desc&page[offset]=1&page[limit]=5","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":agent_id","access_point_connections"],"query":[{"key":"filter[ts_start][operator]","value":"<=>","description":"Filter `access_point_connections` based on `ts_start`.  This filter allows you to provide a single operator and value(s) to filter `ts_start` and `access_point_connections` that fall within the parameters.  \n\nFor the `<=>`(between) operator use the `filter[ts_start][value1]` and `filter[ts_start][value2]` providing an epoch timestamp for each.  \n\nFor the `<=,<,>,>=` operators use the `filter[ts_start][value]` providing an epoch timestamp.","disabled":true},{"key":"filter[ts_start][value]","value":"1580314348750","description":"Use if `filter[ts_start][operator]` is provided and is one of the following: `<=,<,>,>=`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[ts_start][value1]","value":"1580314348750","description":"Use if `filter[ts_start][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[ts_start][value2]","value":"1580317934265","description":"Use if `filter[ts_start][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[wifi_profiles]","value":"1,2","description":"Filter `access_point_connections` based on `wifi_profiles`.  You can filter on a single `wifi_profile` or multiple `wifi_profiles` by providing the `wifi_profiles` ids as a comma separated list.","disabled":true},{"key":"filter[error_states]","value":"dhcp","description":"Use `filter[error_states]` to filter only the `access_point_connections` which have any of the specified error_states. One or more of `association`, `authentication` and `dhcp`."},{"key":"order[attributes]","value":"ts_start","description":"Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with `order[direction]`.  You may only order attributes in the same direction.  Available attributes for ordering are:\n\n- `ts_attached`\n- `ts_detached`\n- `dhcp_acquisition_duration`\n- `network_connectivity_validation`\n- `state`\n- `ts_start`\n- `wpa_association_duration`\n- `wpa_authentication_duration`"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned."},{"key":"page[limit]","value":"5","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25."}],"variable":[{"key":"agent_id","value":"345","description":"Provide the `id` of the `agent` you wish to retrieve `access_point_connections` for."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"888396\",\n            \"type\": \"access_point_connection\",\n            \"attributes\": {\n                \"dhcp_acquisition_duration\": 54257,\n                \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 19\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n                \"error_state\": \"dhcp\",\n                \"ts_attached\": null,\n                \"ts_detached\": 1696298509105,\n                \"ts_start\": 1696298435921,\n                \"network_connectivity_verification\": null,\n                \"state\": \"success_disconnected\",\n                \"wpa_association_duration\": 5781,\n                \"wpa_authentication_duration\": 1019\n            },\n            \"relationships\": {\n                \"access_point\": {\n                    \"data\": null\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"wifi_profile\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"888386\",\n            \"type\": \"access_point_connection\",\n            \"attributes\": {\n                \"dhcp_acquisition_duration\": 53063,\n                \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 14\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 7\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 14\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n                \"error_state\": \"dhcp\",\n                \"ts_attached\": null,\n                \"ts_detached\": 1696291346853,\n                \"ts_start\": 1696291272787,\n                \"network_connectivity_verification\": null,\n                \"state\": \"success_disconnected\",\n                \"wpa_association_duration\": 7752,\n                \"wpa_authentication_duration\": 1011\n            },\n            \"relationships\": {\n                \"access_point\": {\n                    \"data\": null\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"wifi_profile\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"888377\",\n            \"type\": \"access_point_connection\",\n            \"attributes\": {\n                \"dhcp_acquisition_duration\": 51913,\n                \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 11\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n                \"error_state\": \"dhcp\",\n                \"ts_attached\": null,\n                \"ts_detached\": 1696284148680,\n                \"ts_start\": 1696284075576,\n                \"network_connectivity_verification\": null,\n                \"state\": \"success_disconnected\",\n                \"wpa_association_duration\": 7880,\n                \"wpa_authentication_duration\": 1014\n            },\n            \"relationships\": {\n                \"access_point\": {\n                    \"data\": null\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"wifi_profile\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"888366\",\n            \"type\": \"access_point_connection\",\n            \"attributes\": {\n                \"dhcp_acquisition_duration\": 52471,\n                \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 20\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 17\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n                \"error_state\": \"dhcp\",\n                \"ts_attached\": null,\n                \"ts_detached\": 1696277094542,\n                \"ts_start\": 1696277015866,\n                \"network_connectivity_verification\": null,\n                \"state\": \"success_disconnected\",\n                \"wpa_association_duration\": 7985,\n                \"wpa_authentication_duration\": 1016\n            },\n            \"relationships\": {\n                \"access_point\": {\n                    \"data\": null\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"wifi_profile\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"888365\",\n            \"type\": \"access_point_connection\",\n            \"attributes\": {\n                \"dhcp_acquisition_duration\": 53230,\n                \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 10\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n                \"error_state\": \"dhcp\",\n                \"ts_attached\": null,\n                \"ts_detached\": 1696277015866,\n                \"ts_start\": 1696276941699,\n                \"network_connectivity_verification\": null,\n                \"state\": \"success_disconnected\",\n                \"wpa_association_duration\": 7773,\n                \"wpa_authentication_duration\": 1012\n            },\n            \"relationships\": {\n                \"access_point\": {\n                    \"data\": null\n                },\n                \"network_interface\": {\n                    \"data\": {\n                        \"id\": \"393\",\n                        \"type\": \"network_interface\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"wifi_profile\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"51\",\n            \"type\": \"wifi_profile\",\n            \"attributes\": {\n                \"name\": \"Liberty Bank Building\",\n                \"ssid\": \"Liberty Bank Building\",\n                \"description\": \"\",\n                \"band\": null,\n                \"authentication_method\": null,\n                \"encryption_method\": \"wpa-psk\",\n                \"network_verification_enabled\": true,\n                \"network_verification_target\": \"https://www.google.com\",\n                \"network_verification_test\": \"http\",\n                \"interval_minutes\": null,\n                \"phase2\": \"\",\n                \"identity\": \"\",\n                \"ca_cert\": \"\",\n                \"client_cert\": \"\",\n                \"password\": \"\",\n                \"preshared_key\": \"[FILTERED]\",\n                \"private_key\": \"\",\n                \"private_key_password\": \"\",\n                \"psk\": \"[FILTERED]\",\n                \"network_verification_type\": 3\n            },\n            \"relationships\": {\n                \"wifi_hopping_groups\": {\n                    \"data\": [\n                        {\n                            \"id\": \"44\",\n                            \"type\": \"wifi_hopping_group\"\n                        }\n                    ]\n                },\n                \"wifi_hopping_group_agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"297\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"345\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"agents\": {\n                    \"data\": []\n                },\n                \"open_incident\": {\n                    \"data\": null\n                },\n                \"nb_test_counters\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"nb_test_counter\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"error_states\": \"dhcp\"\n        },\n        \"order\": {\n            \"attributes\": \"ts_start\",\n            \"direction\": \"desc\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 5,\n            \"total\": 1474\n        }\n    }\n}"}],"_postman_id":"2335615c-a84a-4e45-a9db-24d5245892f2"},{"name":"/agents/:agent_id/access_point_connections/:id","id":"0b254091-fb73-4698-94a0-3962cbc7e9c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/agents/:agent_id/access_point_connections/:id","description":"<p>This endpoint gives the ability to retreive a specific <code>access_point_connection</code> information for a specified <code>agent</code>.</p>\n<p>See the <a href=\"#folder-55edb112-cd38-41ef-baab-9344cc30cd3a\">Access Point Connection</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","access_point_connections",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve <code>access_point_connections</code> for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"agent_id"},{"description":{"content":"<p>Provide the<code>id</code> of the <code>access_point_connection</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"9221ecc3-d8f4-48d7-bcf4-a2ce74a75aa9","name":"Get connection by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents/:agent_id/access_point_connections/:id","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":agent_id","access_point_connections",":id"],"variable":[{"key":"agent_id","value":"345","description":"Provide the `id` of the `agent` you wish to retrieve `access_point_connections` for."},{"key":"id","value":"888396","description":"Provide the`id` of the `access_point_connection` you wish to retrieve."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"888396\",\n        \"type\": \"access_point_connection\",\n        \"attributes\": {\n            \"dhcp_acquisition_duration\": 54257,\n            \"error_message\": \"DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 19\\nDHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 6\\nNo DHCPOFFERS received.\\nNo working leases in persistent database - sleeping.\\n\",\n            \"error_state\": \"dhcp\",\n            \"ts_attached\": null,\n            \"ts_detached\": 1696298509105,\n            \"ts_start\": 1696298435921,\n            \"network_connectivity_verification\": null,\n            \"state\": \"success_disconnected\",\n            \"wpa_association_duration\": 5781,\n            \"wpa_authentication_duration\": 1019\n        },\n        \"relationships\": {\n            \"access_point\": {\n                \"data\": null\n            },\n            \"network_interface\": {\n                \"data\": {\n                    \"id\": \"393\",\n                    \"type\": \"network_interface\"\n                }\n            },\n            \"wifi_profile\": {\n                \"data\": {\n                    \"id\": \"51\",\n                    \"type\": \"wifi_profile\"\n                }\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"51\",\n            \"type\": \"wifi_profile\",\n            \"attributes\": {\n                \"name\": \"Liberty Bank Building\",\n                \"ssid\": \"Liberty Bank Building\",\n                \"description\": \"\",\n                \"band\": null,\n                \"authentication_method\": null,\n                \"encryption_method\": \"wpa-psk\",\n                \"network_verification_enabled\": true,\n                \"network_verification_target\": \"https://www.google.com\",\n                \"network_verification_test\": \"http\",\n                \"interval_minutes\": null,\n                \"phase2\": \"\",\n                \"identity\": \"\",\n                \"ca_cert\": \"\",\n                \"client_cert\": \"\",\n                \"password\": \"\",\n                \"preshared_key\": \"[FILTERED]\",\n                \"private_key\": \"\",\n                \"private_key_password\": \"\",\n                \"psk\": \"[FILTERED]\",\n                \"network_verification_type\": 3\n            },\n            \"relationships\": {\n                \"wifi_hopping_groups\": {\n                    \"data\": [\n                        {\n                            \"id\": \"44\",\n                            \"type\": \"wifi_hopping_group\"\n                        }\n                    ]\n                },\n                \"wifi_hopping_group_agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"297\",\n                            \"type\": \"agent\"\n                        },\n                        {\n                            \"id\": \"345\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"agents\": {\n                    \"data\": []\n                },\n                \"open_incident\": {\n                    \"data\": null\n                },\n                \"nb_test_counters\": {\n                    \"data\": {\n                        \"id\": \"51\",\n                        \"type\": \"nb_test_counter\"\n                    }\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"0b254091-fb73-4698-94a0-3962cbc7e9c6"}],"id":"977f4f35-0170-4b74-a9d5-0dd25a5a5000","event":[{"listen":"prerequest","script":{"id":"bb0887b8-6b0f-4764-9464-e5c67eb920d6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a59853d8-068b-491a-ba6a-7cb11bb351c8","type":"text/javascript","exec":[""]}}],"_postman_id":"977f4f35-0170-4b74-a9d5-0dd25a5a5000","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Agent Performance Metrics","item":[{"name":"/agents/:agent_id/performance_metrics","id":"8edb664a-2cb6-47dd-bd40-f5e2eeefd15b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://[HOSTNAME]/agents/:agent_id/performance_metrics?order[attributes]=ts&order[direction]=desc&page[offset]=1&page[limit]=5","description":"<p>This endpoint gives the ability to retreive <code>agent_performance_metric</code> information for a specified <code>agent</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-82cb972b-1dae-4020-bcbf-6c5a44802ff7\">Agent Performance Metric</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents",":agent_id","performance_metrics"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>agent_performance_metrics</code> based on <code>ts</code>.  This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>agent_performance_metrics</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts_start][value1]</code> and <code>filter[ts_start][value2]</code> providing an epoch timestamp for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts_start][value]</code> providing an epoch timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":"1580317934265"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>ts</code></li>\n<li><code>cpu_utilization</code></li>\n<li><code>memory_utilization</code></li>\n<li><code>disk_utilization</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"ts"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"5"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>agent</code> you wish to retrieve <code>access_point_connections</code> for.</p>\n","type":"text/plain"},"type":"any","value":"345","key":"agent_id"}]}},"response":[{"id":"a3d7bd66-8d17-45bf-be08-9f10de4c6a15","name":"Get and agent's performance metrics","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/agents/:agent_id/performance_metrics?order[attributes]=ts&order[direction]=desc&page[offset]=1&page[limit]=5","protocol":"https","host":["[HOSTNAME]"],"path":["agents",":agent_id","performance_metrics"],"query":[{"key":"filter[ts][operator]","value":"<=>","description":"Filter `agent_performance_metrics` based on `ts`.  This filter allows you to provide a single operator and value(s) to filter `ts` and `agent_performance_metrics` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[ts_start][value1]` and `filter[ts_start][value2]` providing an epoch timestamp for each.\n\nFor the `<=,<,>,>=` operators use the `filter[ts_start][value]` providing an epoch timestamp.","disabled":true},{"key":"filter[ts][value]","value":"1580314348750","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[ts][value1]","value":"1580314348750","description":"Use if `filter[ts][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[ts][value2]","value":"1580317934265","description":"Use if `filter[ts][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with `order[direction]`.  You may only order attributes in the same direction.  Available attributes for ordering are:\n\n- `ts`\n- `cpu_utilization`\n- `memory_utilization`\n- `disk_utilization`\n"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned."},{"key":"page[limit]","value":"5","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25."}],"variable":[{"key":"agent_id","value":"345","description":"Provide the `id` of the `agent` you wish to retrieve `access_point_connections` for."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"161797350\",\n            \"type\": \"agent_performance_metric\",\n            \"attributes\": {\n                \"ts\": 1695614404007,\n                \"cpu_utilization\": 27.85,\n                \"memory_utilization\": 9.36,\n                \"disk_utilization\": 88\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"161797362\",\n            \"type\": \"agent_performance_metric\",\n            \"attributes\": {\n                \"ts\": 1695614408693,\n                \"cpu_utilization\": 11.05,\n                \"memory_utilization\": 9.47,\n                \"disk_utilization\": 88\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"161797372\",\n            \"type\": \"agent_performance_metric\",\n            \"attributes\": {\n                \"ts\": 1695614413312,\n                \"cpu_utilization\": 12.85,\n                \"memory_utilization\": 9.32,\n                \"disk_utilization\": 88\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"161797382\",\n            \"type\": \"agent_performance_metric\",\n            \"attributes\": {\n                \"ts\": 1695614417969,\n                \"cpu_utilization\": 12.2,\n                \"memory_utilization\": 9.61,\n                \"disk_utilization\": 88\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"161797392\",\n            \"type\": \"agent_performance_metric\",\n            \"attributes\": {\n                \"ts\": 1695614422640,\n                \"cpu_utilization\": 16.55,\n                \"memory_utilization\": 9.85,\n                \"disk_utilization\": 88\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"345\",\n                        \"type\": \"agent\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"order\": {\n            \"attributes\": \"ts\",\n            \"direction\": \"desc\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 5,\n            \"total\": 29494\n        }\n    }\n}"}],"_postman_id":"8edb664a-2cb6-47dd-bd40-f5e2eeefd15b"}],"id":"0689e34a-d081-4388-b985-dfe0ac798dd0","_postman_id":"0689e34a-d081-4388-b985-dfe0ac798dd0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Grouped Alert Counts","item":[{"name":"/agents/grouped_alert_counts","id":"46efc673-11d4-412c-abb0-ef53ab556f56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/agents/grouped_alert_counts","description":"<p>This endpoint gives the ability to retreive <code>grouped_alert_count</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-c3f583a0-1e25-49a6-8b75-b56a6a27dcf5\">Grouped Alert Count</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["agents","grouped_alert_counts"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter which alerts to use to calculate the aggregates based on <code>ts</code>.  This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>alerts</code> that fall within the parameters.\nFor the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing an epoch timestamp for each.\nFor the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing an epoch timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":"1580314348750"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.  An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":"1580317934265"},{"disabled":true,"description":{"content":"<p>Define how to group the alert aggregates. There are two possible values:</p>\n<ol>\n<li>By <code>severity</code>: to group alert counts per agent per severity number. Severity <code>1</code> is a critical alert, and severity <code>4</code> is a warning alert.</li>\n<li>By <code>alert_detector_id</code>: to group alerts counts per agent, per alert detector id. The alert detector id represents the id of the alert profile assigned to this test through the Targets user interface. More information on Alert Configurations can be found <a href=\"https://netbeez.zendesk.com/hc/en-us/articles/201580529-Alerts-Configuration\">here</a>.</li>\n</ol>\n","type":"text/plain"},"key":"group","value":"severity"},{"disabled":true,"description":{"content":"<p>If you wish to restrict the agents returning aggregate alert counts, you can select them as an array of <code>agent_id</code>s using this parameter.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"}],"variable":[]}},"response":[{"id":"361f0057-f24f-4172-9110-ce3e1bfe0c79","name":"Get agent alert counts aggregated by severity","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/agents/grouped_alert_counts?filter[ts][operator]=>&filter[ts][value]=1696219591928&group=severity","protocol":"https","host":["[HOSTNAME]"],"path":["agents","grouped_alert_counts"],"query":[{"key":"filter[ts][operator]","value":">","description":"Filter which alerts to use to calculate the aggregates based on `ts`.  This filter allows you to provide a single operator and value(s) to filter `ts` and `alerts` that fall within the parameters.\nFor the `<=>`(between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing an epoch timestamp for each.\nFor the `<=,<,>,>=` operators use the `filter[ts][value]` providing an epoch timestamp."},{"key":"filter[ts][value]","value":"1696219591928","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`.  An epoch timestamp should be entered."},{"key":"filter[ts][value1]","value":"1580314348750","description":"Use if `filter[ts][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"filter[ts][value2]","value":"1580317934265","description":"Use if `filter[ts][operator]` is provided and is `<=>`.  An epoch timestamp should be entered.","disabled":true},{"key":"group","value":"severity","description":"Define how to group the alert aggregates. There are two possible values:\n1. By `severity`: to group alert counts per agent per severity number. Severity `1` is a critical alert, and severity `4` is a warning alert.\n2. By `alert_detector_id`: to group alerts counts per agent, per alert detector id. The alert detector id represents the id of the alert profile assigned to this test through the Targets user interface. More information on Alert Configurations can be found [here](https://netbeez.zendesk.com/hc/en-us/articles/201580529-Alerts-Configuration)."},{"key":"filter[agents]","value":"1,2","description":"If you wish to restrict the agents returning aggregate alert counts, you can select them as an array of `agent_id`s using this parameter.","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"54\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Cloud - Google\",\n                \"counts_grouped_by_severity\": {\n                    \"1\": 1\n                }\n            },\n            \"relationships\": {}\n        },\n        {\n            \"id\": \"280\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Pittsburgh - Wired\",\n                \"counts_grouped_by_severity\": {\n                    \"1\": 3,\n                    \"4\": 1\n                }\n            },\n            \"relationships\": {}\n        },\n        {\n            \"id\": \"297\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Pittsburgh - WiFi Main\",\n                \"counts_grouped_by_severity\": {\n                    \"1\": 2,\n                    \"4\": 68\n                }\n            },\n            \"relationships\": {}\n        },\n        {\n            \"id\": \"341\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Pittsburgh - Virtual Agent\",\n                \"counts_grouped_by_severity\": {\n                    \"1\": 2\n                }\n            },\n            \"relationships\": {}\n        },\n        {\n            \"id\": \"345\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Pittsburgh - WiFi Sales Office\",\n                \"counts_grouped_by_severity\": {\n                    \"1\": 8\n                }\n            },\n            \"relationships\": {}\n        },\n        {\n            \"id\": \"426\",\n            \"type\": \"grouped_alert_counts\",\n            \"attributes\": {\n                \"name\": \"Jess\",\n                \"counts_grouped_by_severity\": {\n                    \"4\": 4\n                }\n            },\n            \"relationships\": {}\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"ts\": {\n                \"operator\": \">\",\n                \"value\": \"1696219591928\"\n            }\n        }\n    }\n}"}],"_postman_id":"46efc673-11d4-412c-abb0-ef53ab556f56"}],"id":"9819c95b-e531-4094-a6e8-26be70b532c8","_postman_id":"9819c95b-e531-4094-a6e8-26be70b532c8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"976f9e03-3f21-47cf-9bbb-1a8e4fb25568","event":[{"listen":"prerequest","script":{"id":"9e33b361-f1eb-4933-a4ca-2bda2de2f9bd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a681eaf9-555c-4981-8be6-1d19eb5c67b5","type":"text/javascript","exec":[""]}}],"_postman_id":"976f9e03-3f21-47cf-9bbb-1a8e4fb25568","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Alert APIs","item":[{"name":"Alerts","item":[{"name":"/alerts","id":"4d94ebda-5a66-4dec-b8b0-5da61b66d54e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/alerts?page[offset]=1&page[limit]=25&order[attributes]=alert_ts&order[direction]=desc&type=beta","description":"<p>This endpoint gives the ability to retrieve <code>alert</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-227ab124-894c-441b-b7f5-2e0175ab5177\">Alert</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["alerts"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agents</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on the category which the source <code>agents</code> belong to. Valid values are one of <code>network_agent</code> or <code>remote_worker_agent</code>.</p>\n","type":"text/plain"},"key":"filter[categories]","value":"remote_worker_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on the class which the source <code>agents</code> belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: <code>faste</code>,<code>gige</code>,<code>wireless</code>,<code>container</code>,<code>virtual</code>,<code>external</code>,<code>software</code>,<code>windows_server</code>,<code>mac</code>,<code>windows</code>.</p>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"wireless,container,wired,mac"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>agent_groups</code>. You can filter on a single <code>agent_group</code> or multiple <code>agent_groups</code> by providing the <code>agent_groups</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agent_groups]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>alerts</code>. You can filter on a single <code>alert</code> or multiple <code>alerts</code> by providing the <code>alerts</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[alerts]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>targets</code>. You can filter on a single <code>target</code> or multiple <code>targets</code> by providing the <code>targets</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[targets]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>tests</code>. You can filter on a single <code>test</code> or multiple <code>tests</code> by providing the <code>tests</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>test_templates</code>. You can filter on a single <code>test_template</code> or multiple <code>test_templates</code> by providing the <code>test_templates</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>alert_detectors</code>. You can filter on a single <code>alert_detector</code> or multiple <code>alert_detectors</code> by providing the <code>alert_detetectors</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[alert_detectors]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>severity</code>. This filter allows you to provide a single operator and value(s) to filter <code>severity</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[severity][value1]</code> and <code>filter[severity][value2]</code> providing a number for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[severity][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[severity][operator]","value":"<"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[severity][value]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>ts</code>. This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[severity][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ts][value]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>closed_ts</code>. This filter allows you to provide a single operator and value(s) to filter <code>clsoed_ts</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[closed_ts][value1]</code> and <code>filter[closed_ts][value2]</code> providing a unix timestamp for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[closed_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[closed_ts][operator]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[closed_ts][value]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[closed_ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[closed_ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>message</code>. This filter is a string search, any string matches for <code>message</code> will be provided. Examples:</p>\n<ul>\n<li>\"unreachable\"</li>\n<li>\"connected\"</li>\n<li>\"cleared\"</li>\n</ul>\n","type":"text/plain"},"key":"filter[message]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>status</code>. You can filter on a single <code>status</code> or multiple <code>statuses</code> by providing the <code>status</code> as a comma separated list. Available <code>statuses</code> are:</p>\n<ul>\n<li><code>open</code></li>\n<li><code>closed</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[status]","value":""},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with <code>order[direction]</code>. You may only order attributes in the same direction. Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>message</code>\n-<code>severity</code>\n-<code>alert_ts</code>\n-<code>closed_ts</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"alert_ts"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"key":"type","value":"beta"}],"variable":[]}},"response":[{"id":"d58caa17-5e85-436e-8fef-2fe33b9e47ea","name":"Get all the alerts on a target.","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/alerts?filter[targets]=32&page[offset]=1&page[limit]=5&order[attributes]=alert_ts&order[direction]=desc&type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["alerts"],"query":[{"key":"filter[agents]","value":"1","description":"Filter `alerts` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agents` as a comma separated list of `ids`.","disabled":true},{"key":"filter[categories]","value":"remote_worker_agent","description":"Filter `alerts` based on the category which the source `agents` belong to. Valid values are one of `network_agent` or `remote_worker_agent`.","disabled":true},{"key":"filter[agent_classes]","value":"wireless,container,wired,mac","description":"Filter `alerts` based on the class which the source `agents` belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: `faste`,`gige`,`wireless`,`container`,`virtual`,`external`,`software`,`windows_server`,`mac`,`windows`.","disabled":true},{"key":"filter[agent_groups]","value":"1","description":"Filter `alerts` based on `agent_groups`. You can filter on a single `agent_group` or multiple `agent_groups` by providing the `agent_groups` as a comma separated list of `ids`.","disabled":true},{"key":"filter[alerts]","value":"1","description":"Filter `alerts` based on `alerts`. You can filter on a single `alert` or multiple `alerts` by providing the `alerts` as a comma separated list of `ids`.","disabled":true},{"key":"filter[targets]","value":"32","description":"Filter `alerts` based on `targets`. You can filter on a single `target` or multiple `targets` by providing the `targets` as a comma separated list of `ids`."},{"key":"filter[tests]","value":"1","description":"Filter `alerts` based on `tests`. You can filter on a single `test` or multiple `tests` by providing the `tests` as a comma separated list of `ids`.","disabled":true},{"key":"filter[test_templates]","value":"1","description":"Filter `alerts` based on `test_templates`. You can filter on a single `test_template` or multiple `test_templates` by providing the `test_templates` as a comma separated list of `ids`.","disabled":true},{"key":"filter[alert_detectors]","value":"1","description":"Filter `alerts` based on `alert_detectors`. You can filter on a single `alert_detector` or multiple `alert_detectors` by providing the `alert_detetectors` as a comma separated list of `ids`.","disabled":true},{"key":"filter[severity][operator]","value":"<","description":"Filter `alerts` based on `severity`. This filter allows you to provide a single operator and value(s) to filter `severity` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[severity][value1]` and `filter[severity][value2]` providing a number for each.\n\nFor the `<=,<,>,>=` operators use the `filter[severity][value]` providing a number.","disabled":true},{"key":"filter[severity][value]","value":"","description":"Use if `filter[severity][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[severity][value1]","value":"","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[severity][value2]","value":"","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][operator]","value":"","description":"Filter `alerts` based on `ts`. This filter allows you to provide a single operator and value(s) to filter `ts` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[severity][value1]` and `filter[ts][value2]` providing a unix timestamp for each.\n\nFor the `<=,<,>,>=` operators use the `filter[ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[ts][value]","value":"","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[ts][value1]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value2]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[closed_ts][operator]","value":"","description":"Filter `alerts` based on `closed_ts`. This filter allows you to provide a single operator and value(s) to filter `clsoed_ts` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[closed_ts][value1]` and `filter[closed_ts][value2]` providing a unix timestamp for each.\n\nFor the `<=,<,>,>=` operators use the `filter[closed_ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[closed_ts][value]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[closed_ts][value1]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[closed_ts][value2]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[message]","value":"","description":"Filter `alerts` based on `message`. This filter is a string search, any string matches for `message` will be provided. Examples:\n- \"unreachable\"\n- \"connected\"\n- \"cleared\"","disabled":true},{"key":"filter[status]","value":"","description":"Filter `alerts` based on `status`. You can filter on a single `status` or multiple `statuses` by providing the `status` as a comma separated list. Available `statuses` are:\n- `open`\n- `closed`\n ","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"5","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"alert_ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with `order[direction]`. You may only order attributes in the same direction. Available attributes for ordering are:\n- `id`\n- `message`\n-`severity`\n-`alert_ts`\n-`closed_ts`\n"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"type","value":"beta"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3480291\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986561726,\n                \"closed_ts\": null,\n                \"message\": \"Warning Raised: The 1 minute mean metric (239.000ms) is greater than the watermark mean value of 150ms.\",\n                \"severity\": 4,\n                \"severity_name\": \"warning\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-11T01:09:22.000Z\",\n                \"updated_at\": \"2023-10-11T01:09:22.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"426\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"36904\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1939398\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480285\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986068755,\n                \"closed_ts\": null,\n                \"message\": \"Warning Cleared: The 1 minute mean metric (16.600ms) is less than the watermark mean value of 150ms.\",\n                \"severity\": 6,\n                \"severity_name\": \"informational\",\n                \"status\": \"closed\",\n                \"created_at\": \"2023-10-11T01:01:08.000Z\",\n                \"updated_at\": \"2023-10-11T01:01:08.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"35090\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679978\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": {\n                        \"id\": \"3480281\",\n                        \"type\": \"alert\"\n                    }\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480281\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986068754,\n                \"closed_ts\": 1696986068755,\n                \"message\": \"Warning Raised: The 1 minute mean metric (223.300ms) is greater than the watermark mean value of 150ms.\",\n                \"severity\": 4,\n                \"severity_name\": \"warning\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-11T01:01:08.000Z\",\n                \"updated_at\": \"2023-10-11T01:01:08.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"35090\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679978\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480234\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696969272823,\n                \"closed_ts\": null,\n                \"message\": \"Alert cleared\",\n                \"severity\": 6,\n                \"severity_name\": \"informational\",\n                \"status\": \"closed\",\n                \"created_at\": \"2023-10-10T20:21:13.000Z\",\n                \"updated_at\": \"2023-10-10T20:21:13.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"34521\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679982\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": {\n                        \"id\": \"3480231\",\n                        \"type\": \"alert\"\n                    }\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480231\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696969182569,\n                \"closed_ts\": 1696969272823,\n                \"message\": \"Operation timed out after 5000 milliseconds with 170188 bytes received\",\n                \"severity\": 1,\n                \"severity_name\": \"alert\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-10T20:19:48.000Z\",\n                \"updated_at\": \"2023-10-10T20:21:13.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"34521\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679982\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"targets\": \"32\"\n        },\n        \"order\": {\n            \"attributes\": \"alert_ts\",\n            \"direction\": \"desc\"\n        },\n        \"statistics\": {\n            \"raised_alert_count\": 1582,\n            \"cleared_alert_count\": 1581\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 5,\n            \"total\": 633\n        }\n    }\n}"}],"_postman_id":"4d94ebda-5a66-4dec-b8b0-5da61b66d54e"},{"name":"/alerts/ai_summary","id":"60201e94-dd1b-480e-8724-d4495a43633a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://[HOSTNAME]/alerts/ai_summary?filter[ts][operator]=>=&filter[ts][value]=1734544495141&type=beta","description":"<p>This endpoint gives the ability to retrieve <code>alert</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-227ab124-894c-441b-b7f5-2e0175ab5177\">Alert</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["alerts","ai_summary"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agents</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on the category which the source <code>agents</code> belong to. Valid values are one of <code>network_agent</code> or <code>remote_worker_agent</code>.</p>\n","type":"text/plain"},"key":"filter[categories]","value":"remote_worker_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on the class which the source <code>agents</code> belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: <code>faste</code>,<code>gige</code>,<code>wireless</code>,<code>container</code>,<code>virtual</code>,<code>external</code>,<code>software</code>,<code>windows_server</code>,<code>mac</code>,<code>windows</code>.</p>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"wireless,container,wired,mac"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>agent_groups</code>. You can filter on a single <code>agent_group</code> or multiple <code>agent_groups</code> by providing the <code>agent_groups</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agent_groups]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>alerts</code>. You can filter on a single <code>alert</code> or multiple <code>alerts</code> by providing the <code>alerts</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[alerts]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>targets</code>. You can filter on a single <code>target</code> or multiple <code>targets</code> by providing the <code>targets</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[targets]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>tests</code>. You can filter on a single <code>test</code> or multiple <code>tests</code> by providing the <code>tests</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>test_templates</code>. You can filter on a single <code>test_template</code> or multiple <code>test_templates</code> by providing the <code>test_templates</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>alert_detectors</code>. You can filter on a single <code>alert_detector</code> or multiple <code>alert_detectors</code> by providing the <code>alert_detetectors</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[alert_detectors]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>severity</code>. This filter allows you to provide a single operator and value(s) to filter <code>severity</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[severity][value1]</code> and <code>filter[severity][value2]</code> providing a number for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[severity][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[severity][operator]","value":"<"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[severity][value]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value2]","value":""},{"description":{"content":"<p>Filter <code>alerts</code> based on <code>ts</code>. This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[severity][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">="},{"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1734544495141"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>closed_ts</code>. This filter allows you to provide a single operator and value(s) to filter <code>clsoed_ts</code> and <code>alerts</code> that fall within the parameters.</p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[closed_ts][value1]</code> and <code>filter[closed_ts][value2]</code> providing a unix timestamp for each.</p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[closed_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[closed_ts][operator]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[closed_ts][value]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[closed_ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[closed_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[closed_ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>message</code>. This filter is a string search, any string matches for <code>message</code> will be provided. Examples:</p>\n<ul>\n<li>\"unreachable\"</li>\n<li>\"connected\"</li>\n<li>\"cleared\"</li>\n</ul>\n","type":"text/plain"},"key":"filter[message]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>alerts</code> based on <code>status</code>. You can filter on a single <code>status</code> or multiple <code>statuses</code> by providing the <code>status</code> as a comma separated list. Available <code>statuses</code> are:</p>\n<ul>\n<li><code>open</code></li>\n<li><code>closed</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[status]","value":""},{"key":"type","value":"beta"}],"variable":[]}},"response":[{"id":"fdaf2e88-ce04-401e-8c56-c94e87be1443","name":"Get all the alerts on a target.","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/alerts?filter[targets]=32&page[offset]=1&page[limit]=5&order[attributes]=alert_ts&order[direction]=desc&type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["alerts"],"query":[{"key":"filter[agents]","value":"1","description":"Filter `alerts` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agents` as a comma separated list of `ids`.","disabled":true},{"key":"filter[categories]","value":"remote_worker_agent","description":"Filter `alerts` based on the category which the source `agents` belong to. Valid values are one of `network_agent` or `remote_worker_agent`.","disabled":true},{"key":"filter[agent_classes]","value":"wireless,container,wired,mac","description":"Filter `alerts` based on the class which the source `agents` belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: `faste`,`gige`,`wireless`,`container`,`virtual`,`external`,`software`,`windows_server`,`mac`,`windows`.","disabled":true},{"key":"filter[agent_groups]","value":"1","description":"Filter `alerts` based on `agent_groups`. You can filter on a single `agent_group` or multiple `agent_groups` by providing the `agent_groups` as a comma separated list of `ids`.","disabled":true},{"key":"filter[alerts]","value":"1","description":"Filter `alerts` based on `alerts`. You can filter on a single `alert` or multiple `alerts` by providing the `alerts` as a comma separated list of `ids`.","disabled":true},{"key":"filter[targets]","value":"32","description":"Filter `alerts` based on `targets`. You can filter on a single `target` or multiple `targets` by providing the `targets` as a comma separated list of `ids`."},{"key":"filter[tests]","value":"1","description":"Filter `alerts` based on `tests`. You can filter on a single `test` or multiple `tests` by providing the `tests` as a comma separated list of `ids`.","disabled":true},{"key":"filter[test_templates]","value":"1","description":"Filter `alerts` based on `test_templates`. You can filter on a single `test_template` or multiple `test_templates` by providing the `test_templates` as a comma separated list of `ids`.","disabled":true},{"key":"filter[alert_detectors]","value":"1","description":"Filter `alerts` based on `alert_detectors`. You can filter on a single `alert_detector` or multiple `alert_detectors` by providing the `alert_detetectors` as a comma separated list of `ids`.","disabled":true},{"key":"filter[severity][operator]","value":"<","description":"Filter `alerts` based on `severity`. This filter allows you to provide a single operator and value(s) to filter `severity` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[severity][value1]` and `filter[severity][value2]` providing a number for each.\n\nFor the `<=,<,>,>=` operators use the `filter[severity][value]` providing a number.","disabled":true},{"key":"filter[severity][value]","value":"","description":"Use if `filter[severity][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[severity][value1]","value":"","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[severity][value2]","value":"","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][operator]","value":"","description":"Filter `alerts` based on `ts`. This filter allows you to provide a single operator and value(s) to filter `ts` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[severity][value1]` and `filter[ts][value2]` providing a unix timestamp for each.\n\nFor the `<=,<,>,>=` operators use the `filter[ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[ts][value]","value":"","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[ts][value1]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value2]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[closed_ts][operator]","value":"","description":"Filter `alerts` based on `closed_ts`. This filter allows you to provide a single operator and value(s) to filter `clsoed_ts` and `alerts` that fall within the parameters.\n\nFor the `<=>`(between) operator use the `filter[closed_ts][value1]` and `filter[closed_ts][value2]` providing a unix timestamp for each.\n\nFor the `<=,<,>,>=` operators use the `filter[closed_ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[closed_ts][value]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[closed_ts][value1]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[closed_ts][value2]","value":"","description":"Use if `filter[closed_ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[message]","value":"","description":"Filter `alerts` based on `message`. This filter is a string search, any string matches for `message` will be provided. Examples:\n- \"unreachable\"\n- \"connected\"\n- \"cleared\"","disabled":true},{"key":"filter[status]","value":"","description":"Filter `alerts` based on `status`. You can filter on a single `status` or multiple `statuses` by providing the `status` as a comma separated list. Available `statuses` are:\n- `open`\n- `closed`\n ","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"5","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"alert_ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with `order[direction]`. You may only order attributes in the same direction. Available attributes for ordering are:\n- `id`\n- `message`\n-`severity`\n-`alert_ts`\n-`closed_ts`\n"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"type","value":"beta"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3480291\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986561726,\n                \"closed_ts\": null,\n                \"message\": \"Warning Raised: The 1 minute mean metric (239.000ms) is greater than the watermark mean value of 150ms.\",\n                \"severity\": 4,\n                \"severity_name\": \"warning\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-11T01:09:22.000Z\",\n                \"updated_at\": \"2023-10-11T01:09:22.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"426\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"36904\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1939398\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480285\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986068755,\n                \"closed_ts\": null,\n                \"message\": \"Warning Cleared: The 1 minute mean metric (16.600ms) is less than the watermark mean value of 150ms.\",\n                \"severity\": 6,\n                \"severity_name\": \"informational\",\n                \"status\": \"closed\",\n                \"created_at\": \"2023-10-11T01:01:08.000Z\",\n                \"updated_at\": \"2023-10-11T01:01:08.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"35090\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679978\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": {\n                        \"id\": \"3480281\",\n                        \"type\": \"alert\"\n                    }\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480281\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696986068754,\n                \"closed_ts\": 1696986068755,\n                \"message\": \"Warning Raised: The 1 minute mean metric (223.300ms) is greater than the watermark mean value of 150ms.\",\n                \"severity\": 4,\n                \"severity_name\": \"warning\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-11T01:01:08.000Z\",\n                \"updated_at\": \"2023-10-11T01:01:08.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"35090\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"70\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679978\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"99\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480234\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696969272823,\n                \"closed_ts\": null,\n                \"message\": \"Alert cleared\",\n                \"severity\": 6,\n                \"severity_name\": \"informational\",\n                \"status\": \"closed\",\n                \"created_at\": \"2023-10-10T20:21:13.000Z\",\n                \"updated_at\": \"2023-10-10T20:21:13.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"34521\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679982\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": {\n                        \"id\": \"3480231\",\n                        \"type\": \"alert\"\n                    }\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3480231\",\n            \"type\": \"alert\",\n            \"attributes\": {\n                \"alert_ts\": 1696969182569,\n                \"closed_ts\": 1696969272823,\n                \"message\": \"Operation timed out after 5000 milliseconds with 170188 bytes received\",\n                \"severity\": 1,\n                \"severity_name\": \"alert\",\n                \"status\": \"open\",\n                \"created_at\": \"2023-10-10T20:19:48.000Z\",\n                \"updated_at\": \"2023-10-10T20:21:13.000Z\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"alert_detector_instance\": {\n                    \"data\": {\n                        \"id\": \"34521\",\n                        \"type\": \"alert_detector_instance\"\n                    }\n                },\n                \"alert_detector\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"alert_detector\"\n                    }\n                },\n                \"nb_test\": {\n                    \"data\": {\n                        \"id\": \"1679982\",\n                        \"type\": \"nb_test\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"opening_alert\": {\n                    \"data\": null\n                },\n                \"test_template\": {\n                    \"data\": {\n                        \"id\": \"101\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"nb_target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                },\n                \"target\": {\n                    \"data\": {\n                        \"id\": \"32\",\n                        \"type\": \"target\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"targets\": \"32\"\n        },\n        \"order\": {\n            \"attributes\": \"alert_ts\",\n            \"direction\": \"desc\"\n        },\n        \"statistics\": {\n            \"raised_alert_count\": 1582,\n            \"cleared_alert_count\": 1581\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 5,\n            \"total\": 633\n        }\n    }\n}"}],"_postman_id":"60201e94-dd1b-480e-8724-d4495a43633a"}],"id":"8ad44253-684b-495e-8900-56cd5ae1a0bf","_postman_id":"8ad44253-684b-495e-8900-56cd5ae1a0bf","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Alert Detectors","item":[{"name":"/alert_detectors","id":"03aa818c-6f2a-47e7-ab8c-739b6cb2e665","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/alert_detectors?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc&type=beta","description":"<p>This endpoint gives the ability to retrieve <code>alert_detector</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-ebdb1eb7-db19-49f3-826f-3d24aed617b6\">Alert Detector</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["alert_detectors"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> based on if they are set to attach to <code>targets</code> by <code>default</code>.</p>\n","type":"text/plain"},"key":"filter[default]","value":"false"},{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> by <code>alert_detector_types</code>, it can be one of the following values:</p><ul><li><code>AgentUpDown</code></li><li><code>Baseline</code></li><li><code>BaselineWatermark</code></li><li><code>UpDown</code></li><li><code>Watermark</code></li></ul>\nYou can filter on a single <code>alert_detector_type</code> or multiple <code>alert_detector_types</code> by providing the <code>alert_detector_types</code> as a comma separated list.<p></p>\n","type":"text/plain"},"key":"filter[alert_detector_types]","value":"watermark"},{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> by <code>alerting_entity_types</code>, it can be one of the following values:</p><ul><li><code>Agent</code></li><li><code>NbTest</code></li></ul>\nYou can filter on a single <code>alerting_entity_type</code> or multiple <code>alerting_entity_types</code> by providing the <code>alerting_entity_types</code> as a comma separated list.<p></p>\n","type":"text/plain"},"key":"filter[alerting_entity_types]","value":"agent"},{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> by <code>test_type</code>, it can be one of the following values:</p><ul><li><code>Ping</code></li><li><code>HTTP</code></li><li><code>DNS</code></li><li><code>Traceroute</code></li></ul>\nYou can filter on a single <code>test_type</code> or multiple <code>test_types</code> by providing the <code>test_types</code> as a comma separated list.<p></p>\n","type":"text/plain"},"key":"filter[test_types]","value":"http"},{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> based on <code>tests</code>. You can filter on a single <code>test</code> or multiple <code>tests</code> by providing the <code>tests</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"1392"},{"disabled":true,"description":{"content":"<p>Filter <code>alert_detectors</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agents</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"2"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with <code>order[direction]</code>. You may only order attributes in the same direction. Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>name</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"name"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"key":"type","value":"beta"}],"variable":[]}},"response":[{"id":"c4a06f96-d307-4044-9bf3-989b868b4724","name":"Get all the http alert detector definitions.","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/alert_detectors?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc&type=beta","protocol":"https","host":["[HOSTNAME]"],"path":["alert_detectors"],"query":[{"key":"filter[default]","value":"false","description":"Filter `alert_detectors` based on if they are set to attach to `targets` by `default`.","disabled":true},{"key":"filter[alert_detector_types]","value":"watermark","description":"Filter `alert_detectors` by `alert_detector_types`, it can be one of the following values:<ul><li>`AgentUpDown`</li><li>`Baseline`</li><li>`BaselineWatermark`</li><li>`UpDown`</li><li>`Watermark`</li></ul>\nYou can filter on a single `alert_detector_type` or multiple `alert_detector_types` by providing the `alert_detector_types` as a comma separated list.","disabled":true},{"key":"filter[alerting_entity_types]","value":"agent","description":"Filter `alert_detectors` by `alerting_entity_types`, it can be one of the following values:<ul><li>`Agent`</li><li>`NbTest`</li></ul>\nYou can filter on a single `alerting_entity_type` or multiple `alerting_entity_types` by providing the `alerting_entity_types` as a comma separated list.","disabled":true},{"key":"filter[test_types]","value":"http","description":"Filter `alert_detectors` by `test_type`, it can be one of the following values:<ul><li>`Ping`</li><li>`HTTP`</li><li>`DNS`</li><li>`Traceroute`</li></ul>\nYou can filter on a single `test_type` or multiple `test_types` by providing the `test_types` as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"1392","description":"Filter `alert_detectors` based on `tests`. You can filter on a single `test` or multiple `tests` by providing the `tests` as a comma separated list of `ids`.","disabled":true},{"key":"filter[agents]","value":"2","description":"Filter `alert_detectors` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agents` as a comma separated list of `ids`.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"25","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"name","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with `order[direction]`. You may only order attributes in the same direction. Available attributes for ordering are:\n- `id`\n- `name`\n"},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction."},{"key":"type","value":"beta"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"52\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.currentConnectivityState == false\",\n                \"alert_detector_type\": \"AgentUpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2016-08-11T04:14:36.000Z\",\n                \"function_arguments\": \"\",\n                \"message\": \"windowResult.message\",\n                \"name\": \"Wireless Connectivity\",\n                \"reverse_alert_condition\": \"windowResult.currentConnectivityState == true\",\n                \"reverse_message\": \"windowResult.message\",\n                \"stats_function\": \"WirelessConnectivityChanges\",\n                \"stream_source\": \"network_updates\",\n                \"type_of_alerting_entity\": \"Agent\",\n                \"updated_at\": \"2019-09-11T18:56:46.000Z\",\n                \"window_type\": \"monotonic\",\n                \"window_size\": 60000\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"50\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.percentage >= 0.99\",\n                \"alert_detector_type\": \"UpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2016-02-11T23:33:09.000Z\",\n                \"function_arguments\": \"{\\\"condition\\\":\\\"windowObj.error_code>400 && windowObj.error_code<=499\\\"}\",\n                \"message\": \"windowResult.message\",\n                \"name\": \"TRCRT Up/Down\",\n                \"reverse_alert_condition\": \"windowResult.percentage < 0.01\",\n                \"reverse_message\": \"Alert cleared\",\n                \"stats_function\": \"PercentageOfCondition\",\n                \"stream_source\": \"results\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2016-07-22T13:33:07.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 1\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"4\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"15\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.percentage >= 0.99\",\n                \"alert_detector_type\": \"UpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2014-11-05T16:11:18.000Z\",\n                \"function_arguments\": \"{\\\"condition\\\":\\\"windowObj.error_code>100 && windowObj.error_code<200\\\"}\",\n                \"message\": \"windowResult.message\",\n                \"name\": \"PING Up Down\",\n                \"reverse_alert_condition\": \"windowResult.percentage < 0.01\",\n                \"reverse_message\": \"Alert cleared\",\n                \"stats_function\": \"PercentageOfCondition\",\n                \"stream_source\": \"results\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2023-10-06T18:55:22.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 30\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"70\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.mean > 150\",\n                \"alert_detector_type\": \"Watermark\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2020-06-24T18:44:48.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"mean\\\",\\\"baseline_window_size\\\":1440}\",\n                \"message\": \"`Warning Raised: The 1 minute mean metric (${windowResult.mean}ms) is greater than the watermark mean value of 150ms.`\",\n                \"name\": \"PING RTT 150ms\",\n                \"reverse_alert_condition\": \"windowResult.mean < 150\",\n                \"reverse_message\": \"`Warning Cleared: The 1 minute mean metric (${windowResult.mean}ms) is less than the watermark mean value of 150ms.`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2020-06-24T18:44:48.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 1\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"69\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.errors > 3\",\n                \"alert_detector_type\": \"Watermark\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2020-06-24T18:40:58.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"errors\\\",\\\"baseline_window_size\\\":1440}\",\n                \"message\": \"`Warning Raised: The 1 minute errors metric (${windowResult.errors*100}%) is greater than the watermark errors value of 3%.`\",\n                \"name\": \"PING packet loss\",\n                \"reverse_alert_condition\": \"windowResult.errors < 3\",\n                \"reverse_message\": \"`Warning Cleared: The 1 minute errors metric (${windowResult.errors*100}%) is less than the watermark errors value of 3%.`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2020-06-24T18:40:58.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 1\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"68\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.errors > 0.02\",\n                \"alert_detector_type\": \"Watermark\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2019-07-22T15:03:06.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"errors\\\"}\",\n                \"message\": \"`Warning Raised: The 1 minute errors metric (${windowResult.errors*100}%) is greater than the watermark errors value of 2.00%`\",\n                \"name\": \"Packet Loss 1 Minute\",\n                \"reverse_alert_condition\": \"windowResult.errors < 0.02\",\n                \"reverse_message\": \"`Warning Cleared: The 1 minute errors metric (${windowResult.errors*100}%) is less than the watermark errors value of 2.00%`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2019-07-22T15:03:06.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 1\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"59\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.mean_ratio > 4\",\n                \"alert_detector_type\": \"Baseline\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2017-07-14T21:39:28.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"mean\\\",\\\"baseline_window_size\\\":43200}\",\n                \"message\": \"`Warning Raised: The 1 hour mean metric (${windowResult.mean}ms) is greater than the 1 month mean metric (${windowResult.baseline_mean}ms) by at least 4 times.`\",\n                \"name\": \"Latency > 4X Baseline\",\n                \"reverse_alert_condition\": \"windowResult.mean_ratio < 4\",\n                \"reverse_message\": \"`Warning Cleared: The 1 hour mean metric (${windowResult.mean}ms) is less than 4 times the 1 month mean metric (${windowResult.baseline_mean}ms).`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2017-09-14T14:47:24.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 60\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.percentage >= 0.99\",\n                \"alert_detector_type\": \"UpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2014-01-24T00:10:06.000Z\",\n                \"function_arguments\": \"{\\\"condition\\\":\\\"windowObj.error_code>300 && windowObj.error_code<400\\\"}\",\n                \"message\": \"windowResult.message\",\n                \"name\": \"HTTP Up Down\",\n                \"reverse_alert_condition\": \"windowResult.percentage < 0.01\",\n                \"reverse_message\": \"Alert cleared\",\n                \"stats_function\": \"PercentageOfCondition\",\n                \"stream_source\": \"results\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2014-11-06T00:15:58.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 5\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"58\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.mean >= 1\",\n                \"alert_detector_type\": \"Watermark\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2017-07-06T14:30:10.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"mean\\\"}\",\n                \"message\": \"`Warning Raised: The 15 minute mean metric (${windowResult.mean}s) is greater than the watermark mean value of 1s`\",\n                \"name\": \"HTTP Loading > 1 sec\",\n                \"reverse_alert_condition\": \"windowResult.mean < 1\",\n                \"reverse_message\": \"`Warning Cleared: The 15 minute mean metric (${windowResult.mean}s) is less than the watermark mean value of 1s`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2017-07-06T14:30:10.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 15\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"62\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.mean > 2\",\n                \"alert_detector_type\": \"Watermark\",\n                \"alerts_severity\": 4,\n                \"attach_by_default\": false,\n                \"created_at\": \"2017-11-21T01:24:47.000Z\",\n                \"function_arguments\": \"{\\\"alert_metric\\\":\\\"mean\\\",\\\"baseline_window_size\\\":0}\",\n                \"message\": \"`Warning Raised: The 15 minute mean metric (${windowResult.mean}ms) is greater than the watermark mean value of 2ms.`\",\n                \"name\": \"HTTP Loading >  2 seconds\",\n                \"reverse_alert_condition\": \"windowResult.mean < 2\",\n                \"reverse_message\": \"`Warning Cleared: The 15 minute mean metric (${windowResult.mean}ms) is less than the watermark mean value of 2ms.`\",\n                \"stats_function\": \"TestPerformance\",\n                \"stream_source\": \"statistics\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2020-04-14T23:31:00.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 15\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult.percentage >= 0.99\",\n                \"alert_detector_type\": \"UpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2014-01-24T00:10:06.000Z\",\n                \"function_arguments\": \"{\\\"condition\\\":\\\"windowObj.error_code>200 && windowObj.error_code<300\\\"}\",\n                \"message\": \"windowResult.message\",\n                \"name\": \"DNS Up Down\",\n                \"reverse_alert_condition\": \"windowResult.percentage < 0.01\",\n                \"reverse_message\": \"Alert cleared\",\n                \"stats_function\": \"PercentageOfCondition\",\n                \"stream_source\": \"results\",\n                \"type_of_alerting_entity\": \"NbTest\",\n                \"updated_at\": \"2014-11-06T00:16:03.000Z\",\n                \"window_type\": \"sliding\",\n                \"window_size\": 5\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": {\n                        \"id\": \"2\",\n                        \"type\": \"test_type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"alert_detector\",\n            \"attributes\": {\n                \"alert_condition\": \"windowResult <= 0\",\n                \"alert_detector_type\": \"AgentUpDown\",\n                \"alerts_severity\": 1,\n                \"attach_by_default\": true,\n                \"created_at\": \"2014-01-24T00:10:06.000Z\",\n                \"function_arguments\": null,\n                \"message\": \"Agent Unreachable\",\n                \"name\": \"Agent Reachability\",\n                \"reverse_alert_condition\": \"windowResult > 0\",\n                \"reverse_message\": \"Agent back online\",\n                \"stats_function\": \"count\",\n                \"stream_source\": \"heartbeats\",\n                \"type_of_alerting_entity\": \"Agent\",\n                \"updated_at\": \"2019-10-30T19:54:32.000Z\",\n                \"window_type\": \"monotonic\",\n                \"window_size\": 45000\n            },\n            \"relationships\": {\n                \"nb_test_type\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"order\": {\n            \"attributes\": \"name\",\n            \"direction\": \"desc\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"total\": 1\n        }\n    }\n}"}],"_postman_id":"03aa818c-6f2a-47e7-ab8c-739b6cb2e665"}],"id":"cdf20231-e255-4704-b86e-d3863cf00ead","_postman_id":"cdf20231-e255-4704-b86e-d3863cf00ead","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"00840d45-1e5a-4c52-95da-679fde9f7ad3","description":"<p>The NetBeez Alert APIs allow for retrieving, and in some cases modifying, of <code>Alert</code> and <code>AlertDetector</code> related data and configuration.</p>\n","_postman_id":"00840d45-1e5a-4c52-95da-679fde9f7ad3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Incident APIs","item":[{"name":"Incidents","item":[{"name":"/incidents","id":"d132c87f-948a-469d-9daa-fd22a4a3f016","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/incidents?include=incident_logs&page[offset]=1&page[limit]=25&order[attributes]=start&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>incident</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-2b8be5fd-72ce-4a47-b29a-fffb6f80c940\">Incident</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["incidents"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code></p>\n","type":"text/plain"},"key":"filter[ids]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents] ","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on the category which the source <code>agents</code> belong to. Valid values are one of <code>network_agent</code> or <code>remote_worker_agent</code>.</p>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on the class which the source <code>agents</code> belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: <code>faste</code>,<code>gige</code>,<code>wireless</code>,<code>container</code>,<code>virtual</code>,<code>external</code>,<code>software</code>,<code>windows_server</code>,<code>mac</code>,<code>windows</code>.</p>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"gige,wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>targets</code>. You can filter on a single <code>target</code> or multiple <code>targets</code> by providing the <code>target</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[targets]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>wifi_profiles</code>. You can filter on a single <code>wifi_profile</code> or multiple <code>wifi_profiles</code> by providing the <code>wifi_profile</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[wifi_profile]","value":"1,2"},{"key":"include","value":"incident_logs"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>ack_ts</code> (acknoledgement timestamp).  This filter allows you to provide a single operator and value(s) to filter <code>ack_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ack_ts][ack_value1]</code> and <code>filter[ack_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ack_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ack_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ack_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ack_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ack_ts][value2]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>end_ts</code> (timestamp when the incident got resolved).  This filter allows you to provide a single operator and value(s) to filter <code>end_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[end_ts][end_value1]</code> and <code>filter[end_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[end_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[end_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[end_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[end_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[end_ts][value2]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>start_ts</code> (timestamp when the incident got resolved).  This filter allows you to provide a single operator and value(s) to filter <code>start_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[start_ts][start_value1]</code> and <code>filter[start_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[start_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[start_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[start_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[start_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[start_ts][value2]","value":"1596045708881"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the incidents you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many incidents to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are: start_ts, end_ts, ack_ts</p>\n","type":"text/plain"},"key":"order[attributes]","value":"start"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"}],"variable":[]}},"response":[],"_postman_id":"d132c87f-948a-469d-9daa-fd22a4a3f016"},{"name":"/incidents/ai_summary","id":"1b9839b4-d018-4a6c-989d-e1edb1c439ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/incidents/ai_summary?include=incident_logs&page[offset]=1&page[limit]=25&order[attributes]=start&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>incident</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-2b8be5fd-72ce-4a47-b29a-fffb6f80c940\">Incident</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["incidents","ai_summary"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on the category which the source <code>agents</code> belong to. Valid values are one of <code>network_agent</code> or <code>remote_worker_agent</code>.</p>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on the class which the source <code>agents</code> belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: <code>faste</code>,<code>gige</code>,<code>wireless</code>,<code>container</code>,<code>virtual</code>,<code>external</code>,<code>software</code>,<code>windows_server</code>,<code>mac</code>,<code>windows</code>.</p>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"gige,wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>targets</code>. You can filter on a single <code>target</code> or multiple <code>targets</code> by providing the <code>target</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[targets]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>wifi_profiles</code>. You can filter on a single <code>wifi_profile</code> or multiple <code>wifi_profiles</code> by providing the <code>wifi_profile</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[wifi_profile]","value":"1,2"},{"key":"include","value":"incident_logs"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>ack_ts</code> (acknoledgement timestamp).  This filter allows you to provide a single operator and value(s) to filter <code>ack_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ack_ts][ack_value1]</code> and <code>filter[ack_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ack_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ack_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ack_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ack_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ack_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ack_ts][value2]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>end_ts</code> (timestamp when the incident got resolved).  This filter allows you to provide a single operator and value(s) to filter <code>end_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[end_ts][end_value1]</code> and <code>filter[end_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[end_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[end_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[end_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[end_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[end_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[end_ts][value2]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Filter <code>incidents</code> based on <code>start_ts</code> (timestamp when the incident got resolved).  This filter allows you to provide a single operator and value(s) to filter <code>start_ts</code> and <code>incidents</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[start_ts][start_value1]</code> and <code>filter[start_ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[start_ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[start_ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[start_ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[start_ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[start_ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[start_ts][value2]","value":"1596045708881"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the incidents you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many incidents to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are: start_ts, end_ts, ack_ts</p>\n","type":"text/plain"},"key":"order[attributes]","value":"start"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"}],"variable":[]}},"response":[],"_postman_id":"1b9839b4-d018-4a6c-989d-e1edb1c439ec"}],"id":"4bd37ac5-7ffc-48aa-bd19-64e3fcd1a33e","_postman_id":"4bd37ac5-7ffc-48aa-bd19-64e3fcd1a33e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"27eca2f1-21b8-460a-b403-5551e76f1ed3","_postman_id":"27eca2f1-21b8-460a-b403-5551e76f1ed3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Reporting APIs","item":[{"name":"Generated Reports","item":[{"name":"/reports/generated_reports","id":"5f22b623-de6b-4688-9f51-0d00d3d1cdb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/reports/generated_reports?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>generated_report</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-231e255f-b799-4235-9190-ea58f5db3dc6\">Generated Report</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","generated_reports"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>name</code>.  This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"My Report"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>report_type</code>. You can filter on a single <code>report_type</code> or multiple <code>report_types</code> as a comma separated list. Available <code>report_types</code> are:</p>\n<ul>\n<li><code>agent</code></li>\n<li><code>network_status</code></li>\n<li><code>scheduled_report</code></li>\n<li><code>target</code></li>\n<li><code>weekly_status</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[report_types]","value":"network_status"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on if the report was generated from a <code>scheduled_report</code> or geneerated ad hoc.</p>\n","type":"text/plain"},"key":"filter[ad_hoc]","value":"false"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based <code>generated_by</code> or the person who requested the report be generated. This filter is a string search, any string matches for <code>generated_by</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[generated_by]","value":"Net"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on if they were generated from a <code>scheduled_reports</code>. You can filter on a single <code>scheduled_report</code> or multiple <code>scheduled_reports</code> by providing the <code>scheduled_reports</code> as a comma separated list of ids.</p>\n","type":"text/plain"},"key":"filter[scheduled_reports]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>state</code>. <code>state</code> include following values:\n-<code> created</code>\n-<code> processing</code>\n-<code> generated</code>\nYou can filter on a single <code>state</code> or multiple <code>states</code> by providing the <code>generated_report</code> <code>states</code> as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[states]","value":"created"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>created_at</code>. This filter allows you to provide a single operator and value(s) to filter <code>created_at</code> and <code>generated_reports</code> that fall within the parameters.\nFor the <code>&lt;=&gt;</code>(between) operator use the <code>filter[created_at][value1] </code>and <code>filter[created_at][value2] </code>providing an epoch timestamp for each.\nFor the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[created_at][value]</code> providing an epoch timestamp.</p>\n","type":"text/plain"},"key":"filter[created_at][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[created_at][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code>. An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[created_at][value]","value":"1694892305374"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[created_at</code>][operator] <code>is provided and is </code>&lt;=&gt;`. An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[created_at][value1]","value":"1694892305374"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[created_at</code>][operator] <code>is provided and is </code>&lt;=&gt;`. An epoch timestamp should be entered.</p>\n","type":"text/plain"},"key":"filter[created_at][value2]","value":"1694978810472"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>users</code>. You can filter on a single <code>user</code> or multiple <code>users</code> by providing the <code>users</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[users]","value":"1"},{"disabled":true,"description":{"content":"<p>Request relationship  information of each <code>generated_report</code> to be included in the returned payload. Available options are:</p>\n<ul>\n<li><code>scheduled_report</code></li>\n<li><code>user</code></li>\n</ul>\n","type":"text/plain"},"key":"include","value":"scheduled_report,user"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>created_at</code></li>\n<li><code>name</code></li>\n<li><code>report_type</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"name"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"}],"variable":[]}},"response":[],"_postman_id":"5f22b623-de6b-4688-9f51-0d00d3d1cdb9"},{"name":"/reports/generated_reports/:id","id":"35f2c9af-f411-4533-936c-0808d6ac4df4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/reports/generated_reports/:id","description":"<p>This endpoint gives the ability to retrieve a specific <code>generated_report</code>.</p>\n<p>See the <a href=\"#folder-231e255f-b799-4235-9190-ea58f5db3dc6\">Generated Report</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","generated_reports",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the unique <code>id</code> of the <code>generated_report</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"68800000-c7b1-44a9-8b04-3ad4e3c2c3a9","key":"id"}]}},"response":[],"_postman_id":"35f2c9af-f411-4533-936c-0808d6ac4df4"},{"name":"/reports/generated_reports/:id","id":"f32fa7d2-4e7b-45ae-83a0-7614eae78407","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://[HOSTNAME]/reports/generated_reports","description":"<p>Delete a specific <code>generated_report</code>. Once a request is made the <code>generated_report</code> will be removed from the NetBeez dashboard and queued to be permanently deleted.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","generated_reports"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"key":"ids","value":"f47aa1dc-37ba-4292-a148-16d2b9ad949e,ee949133-e5a6-4427-8353-e09cd850b475"}],"variable":[]}},"response":[],"_postman_id":"f32fa7d2-4e7b-45ae-83a0-7614eae78407"}],"id":"2b2dbecb-43de-4a15-9467-08e96c3c748a","event":[{"listen":"prerequest","script":{"id":"4aca2365-9543-471e-9645-ce3b14de4a6e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"88cca8db-c56d-4f0a-9f5c-07ceff8fdda4","type":"text/javascript","exec":[""]}}],"_postman_id":"2b2dbecb-43de-4a15-9467-08e96c3c748a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Scheduled Reports","item":[{"name":"/reports/scheduled_reports","id":"a6fe7bbc-d31b-4417-a347-b2be3db8b1fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://[HOSTNAME]/reports/scheduled_reports?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>scheduled_report</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-fb1b6251-1469-4dc4-8bf7-a522b8f5c6bd\">Scheduled Report</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","scheduled_reports"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>name</code>.  This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"My Report"},{"disabled":true,"description":{"content":"<p>Filter <code>generated_reports</code> based on <code>report_type</code>. You can filter on a single <code>report_type</code> or multiple <code>report_types</code> as a comma separated list. Available <code>report_types</code> are:</p>\n<ul>\n<li><code>network_status</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[report_types]","value":"network_status"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>created_at</code></li>\n<li><code>name</code></li>\n<li><code>report_type</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"name"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"disabled":true,"key":"filter[users]","value":"1"},{"disabled":true,"key":"include","value":"user,contacts"},{"disabled":true,"key":"filter[created_by]","value":"Net"},{"disabled":true,"key":"filter[auto_subscribe]","value":"false"},{"disabled":true,"key":"filter[paused]","value":"false"},{"disabled":true,"key":"filter[system_report]","value":"false"},{"disabled":true,"key":"filter[contacts]","value":"test@test.local"}],"variable":[]}},"response":[],"_postman_id":"a6fe7bbc-d31b-4417-a347-b2be3db8b1fd"},{"name":"/reports/scheduled_reports","id":"0e3b339a-28d5-4dac-84d9-e03a0b43451f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"scheduled_report\",\n    \"attributes\": {\n      \"name\": \"Test\",\n      \"report_type\": \"network_status\",\n      \"cron_schedule\": \"0 4 * * 1\",\n      \"paused\": true,\n      \"auto_subscribe\": false,\n      \"time_period\": \"yesterday\",\n      \"agents\": [1,2],\n      \"targets\": [1]\n    },\n    \"relationships\": {\n      \"contacts\": {\n        \"data\": [\n          {\n            \"id\": \"1\",\n            \"type\": \"contact\"\n          },\n          {\n            \"type\": \"contact\",\n            \"attributes\": {\n              \"email\": \"test@test.local\"\n            }\n          }\n        ]\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/reports/scheduled_reports","description":"<p>This endpoint gives the ability to create a <code>scheduled_report</code>, which will produce <code>generated_reports</code> based on provided critiera and schedule.</p>\n<p>See the <a href=\"#folder-fb1b6251-1469-4dc4-8bf7-a522b8f5c6bd\">Scheduled Report </a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","scheduled_reports"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e3b339a-28d5-4dac-84d9-e03a0b43451f"},{"name":"/reports/scheduled_reports","id":"296d4365-de36-4e52-b5f1-2e100fc100ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": \"6732b3a6-839c-4921-a527-6b1ad3dc5080\",\n    \"type\": \"scheduled_report\",\n    \"attributes\": {\n      \"name\": \"Testing\"\n    },\n    \"relationships\": {\n      \"contacts\": {\n        \"data\": [\n        ]\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/reports/scheduled_reports/:id","description":"<p>This endpoint gives the ability to update a specified <code>scheduled_report</code>, which will produce <code>generated_reports</code> based on the updated critiera and schedule.</p>\n<p>See the <a href=\"#folder-fb1b6251-1469-4dc4-8bf7-a522b8f5c6bd\">Scheduled Report </a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","scheduled_reports",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"id":"2efe885e-277a-44e2-8f7e-a708c34cfbd3","type":"any","value":"6732b3a6-839c-4921-a527-6b1ad3dc5080","key":"id"}]}},"response":[],"_postman_id":"296d4365-de36-4e52-b5f1-2e100fc100ef"},{"name":"/reports/scheduled_reports/:id","id":"4d10075d-e098-4618-beeb-bde6ddf4a9d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://[HOSTNAME]/reports/scheduled_reports/:id?generated_reports=delete","description":"<p>This endpoint gives the ability to delete a specific <code>scheduled_report</code>. This will not delete <code>generated_reports</code> that the <code>scheduled_report</code> has created.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["reports","scheduled_reports",":id"],"host":["[HOSTNAME]"],"query":[{"key":"generated_reports","value":"delete"}],"variable":[{"id":"b2c41126-1cbd-4e4e-ba6d-2f3dbd030911","description":{"content":"<p>Provide the <code>id</code> of the <code>scheduled_report</code> you wish to delete.</p>\n","type":"text/plain"},"type":"any","value":"6732b3a6-839c-4921-a527-6b1ad3dc5080","key":"id"}]}},"response":[],"_postman_id":"4d10075d-e098-4618-beeb-bde6ddf4a9d2"}],"id":"0cdeb865-4154-4922-a5a6-8b89324a49bc","_postman_id":"0cdeb865-4154-4922-a5a6-8b89324a49bc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"455b959c-1102-4713-80f7-f90eeda14271","event":[{"listen":"prerequest","script":{"id":"7bb301e6-c081-4e99-99ab-65b7647fea2d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25256e0e-fbe7-4cb8-b52d-c9de5c45ac09","type":"text/javascript","exec":[""]}}],"_postman_id":"455b959c-1102-4713-80f7-f90eeda14271","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Target APIs","item":[{"name":"Targets","item":[{"name":"/targets","id":"bfb19c40-b301-4b26-87ed-576a8f900aff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/targets?page[offset]=&page[limit]=&order[attributes]=&order[direction]=&include=test_templates","description":"<p>This endpoint gives the ability to retrieve <code>target</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-d027bace-4f9d-43a7-851b-08ea18313f25\">Target </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["targets"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"key":"filter[name][regex]","value":""},{"disabled":true,"key":"filter[agents]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on the category which any of the associated <code>agents</code> belong to. Valid values are one of <code>network_agent</code> or <code>remote_worker_agent</code>.</p>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on the class which any of the associated <code>agents</code> belong to. You can filter on multiple classes by providing a comma separated list of classes. Possible classes include: \n-<code>faste</code></p>\n<ul>\n<li><code>gige</code></li>\n<li><code>wireless</code></li>\n<li><code>container</code></li>\n<li><code>virtual</code></li>\n<li><code>external</code></li>\n<li><code>software</code></li>\n<li><code>windows_server</code></li>\n<li><code>mac</code>\n-<code>windows</code>.</li>\n</ul>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"gige,wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on associated <code>agent_groups</code>. You can filter on a single <code>agent_group</code> or multiple <code>agent_groups</code> by providing the <code>agent_groups</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agent_groups]","value":"1,2"},{"disabled":true,"key":"filter[contacts]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on <code>critical_alerts</code> minimum by providing a number. This filter can be used independently or in conjunction with <code>filter[critical_alerts][max]</code>.</p>\n","type":"text/plain"},"key":"filter[critlcal_alerts][min]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on <code>critical_alerts</code> maximum by providing a number. This filter can be used independently or in conjunction with <code>filters[critical_alerts][min]</code>.</p>\n","type":"text/plain"},"key":"filter[critlcal_alerts][max]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on <code>warning_alerts</code> minimum by providing a number. This filter can be used independently or in conjunction with <code>filter[warning_alerts][max]</code>.</p>\n","type":"text/plain"},"key":"filter[warning_alerts][min]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on <code>warning_alerts</code> maximum by providing a number. This filter can be used independently or in conjunction with <code>filters[warning_alerts][min]</code>.</p>\n","type":"text/plain"},"key":"filter[warning_alerts][max]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>targets</code> based on whether or not they have an open incident at the time of the request.</p>\n","type":"text/plain"},"key":"filter[open_incident]","value":"true"},{"disabled":true,"key":"filter[smtp_notify]","value":""},{"disabled":true,"key":"filter[vpn]","value":""},{"disabled":true,"key":"filter[wifi]","value":""},{"disabled":true,"key":"filter[wired]","value":""},{"key":"page[offset]","value":""},{"key":"page[limit]","value":""},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>name</code></li>\n<li><code>description</code></li>\n<li><code>open_incident</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":""},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":""},{"key":"include","value":"test_templates"}],"variable":[]}},"response":[],"_postman_id":"bfb19c40-b301-4b26-87ed-576a8f900aff"},{"name":"/targets/saas","id":"233ad4af-6d6a-407a-a59d-affb0af6b4e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets/saas","description":"<p>This endpoint gives the ability to easily create <code>targets</code> based on popular SaaS products.</p>\n<p>See the <a href=\"#folder-ae0cd649-c124-4a50-be6e-03bf67000cdd\">SaaS Target</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["targets","saas"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"1e17a3d4-3879-442d-9136-1f045ce605e5","name":"Create a new SaaS target","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"targets\",\n        \"relationships\": {\n            \"saas_apps\": {\n                \"data\": [\n                    {\n                        \"id\": \"google_docs\",\n                        \"type\": \"saas_app\"\n                    }\n                ]\n            },\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b26fec24-da89-4000-9922-27c978d71f13","name":"Create a new SaaS target with parameter","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"targets\",\n        \"relationships\": {\n            \"saas_apps\": {\n                \"data\": [\n                    {\n                        \"id\": \"salesforce_my_domain\",\n                        \"type\": \"saas_app\",\n                        \"attributes\": {\n                            \"name\": \"test123\"\n                        }\n                    }\n                ]\n            },\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 127,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"13\",\n            \"type\": \"target\",\n            \"attributes\": {\n                \"created_at\": \"2023-11-09T18:44:09.000Z\",\n                \"name\": \"Salesforce My Domain\",\n                \"description\": null,\n                \"smtp_notify\": true,\n                \"test_aggregate_counts_by_type\": {\n                    \"1\": {\n                        \"success\": 0,\n                        \"fail\": 0,\n                        \"warning\": 0,\n                        \"paused\": 0,\n                        \"unknown\": 0\n                    },\n                    \"2\": {\n                        \"success\": 0,\n                        \"fail\": 0,\n                        \"warning\": 0,\n                        \"paused\": 0,\n                        \"unknown\": 0\n                    },\n                    \"3\": {\n                        \"success\": 0,\n                        \"fail\": 0,\n                        \"warning\": 0,\n                        \"paused\": 0,\n                        \"unknown\": 0\n                    },\n                    \"4\": {\n                        \"success\": 0,\n                        \"fail\": 0,\n                        \"warning\": 0,\n                        \"paused\": 0,\n                        \"unknown\": 0\n                    },\n                    \"9\": {\n                        \"success\": 0,\n                        \"fail\": 0,\n                        \"warning\": 0,\n                        \"paused\": 0,\n                        \"unknown\": 0\n                    }\n                },\n                \"updated_at\": \"2023-11-09T18:44:09.000Z\",\n                \"vpn_target\": false,\n                \"wifi_test\": false,\n                \"wired_test\": false\n            },\n            \"relationships\": {\n                \"direct_agents\": {\n                    \"data\": [\n                        {\n                            \"id\": \"127\",\n                            \"type\": \"agent\"\n                        }\n                    ]\n                },\n                \"agent_group_agents\": {\n                    \"data\": []\n                },\n                \"agent_groups\": {\n                    \"data\": [\n                        {\n                            \"id\": 1,\n                            \"type\": \"agent_group\"\n                        }\n                    ]\n                },\n                \"contacts\": {\n                    \"data\": []\n                },\n                \"open_incident\": {\n                    \"data\": null\n                },\n                \"test_templates\": {\n                    \"data\": [\n                        {\n                            \"id\": \"44\",\n                            \"type\": \"test_template\"\n                        },\n                        {\n                            \"id\": \"45\",\n                            \"type\": \"test_template\"\n                        },\n                        {\n                            \"id\": \"46\",\n                            \"type\": \"test_template\"\n                        },\n                        {\n                            \"id\": \"47\",\n                            \"type\": \"test_template\"\n                        },\n                        {\n                            \"id\": \"48\",\n                            \"type\": \"test_template\"\n                        }\n                    ]\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"44\",\n            \"type\": \"test_template\",\n            \"attributes\": {\n                \"label\": \"Sharepoint Tenant\",\n                \"count\": 0,\n                \"interval\": 10,\n                \"timeout\": 5,\n                \"target\": \"test123.my.salesforce.com\",\n                \"test_statuses\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"data_size\": 56,\n                \"dont_fragment\": false,\n                \"tos\": null,\n                \"port\": null,\n                \"ping_type\": 2,\n                \"flags\": null,\n                \"jitter_mos\": false\n            },\n            \"relationships\": {\n                \"alert_detectors\": {\n                    \"data\": [\n                        {\n                            \"id\": \"1\",\n                            \"type\": \"alert_detector\"\n                        },\n                        {\n                            \"id\": \"5\",\n                            \"type\": \"alert_detector\"\n                        }\n                    ]\n                },\n                \"test_type\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"test_type\"\n                    }\n                },\n                \"nb_tests\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"45\",\n            \"type\": \"test_template\",\n            \"attributes\": {\n                \"label\": \"Sharepoint Tenant\",\n                \"count\": 0,\n                \"interval\": 30,\n                \"timeout\": 5,\n                \"target\": \"test123.my.salesforce.com\",\n                \"test_statuses\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"dns_server\": null,\n                \"dns_type\": 1\n            },\n            \"relationships\": {\n                \"alert_detectors\": {\n                    \"data\": [\n                        {\n                            \"id\": \"2\",\n                            \"type\": \"alert_detector\"\n                        },\n                        {\n                            \"id\": \"6\",\n                            \"type\": \"alert_detector\"\n                        }\n                    ]\n                },\n                \"test_type\": {\n                    \"data\": {\n                        \"id\": \"2\",\n                        \"type\": \"test_type\"\n                    }\n                },\n                \"nb_tests\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"46\",\n            \"type\": \"test_template\",\n            \"attributes\": {\n                \"label\": \"Sharepoint Tenant\",\n                \"count\": 0,\n                \"interval\": 60,\n                \"timeout\": 5,\n                \"target\": \"https://test123.my.salesforce.com\",\n                \"test_statuses\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"http_method\": \"GET\",\n                \"proxy_protocol\": null,\n                \"proxy_address\": null,\n                \"proxy_port\": null,\n                \"proxy_authentication_username\": null,\n                \"proxy_authentication_password\": null,\n                \"authentication_type\": null,\n                \"authentication_username\": null,\n                \"authentication_password\": null,\n                \"insecure\": false\n            },\n            \"relationships\": {\n                \"alert_detectors\": {\n                    \"data\": [\n                        {\n                            \"id\": \"3\",\n                            \"type\": \"alert_detector\"\n                        },\n                        {\n                            \"id\": \"7\",\n                            \"type\": \"alert_detector\"\n                        }\n                    ]\n                },\n                \"test_type\": {\n                    \"data\": {\n                        \"id\": \"3\",\n                        \"type\": \"test_type\"\n                    }\n                },\n                \"nb_tests\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"47\",\n            \"type\": \"test_template\",\n            \"attributes\": {\n                \"label\": \"Sharepoint Tenant\",\n                \"count\": 0,\n                \"interval\": 300,\n                \"timeout\": -1,\n                \"target\": \"test123.my.salesforce.com\",\n                \"test_statuses\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"num_flows\": 20,\n                \"source_port\": 12345,\n                \"destination_port\": 33434,\n                \"max_ttl\": 30,\n                \"min_ttl\": 1,\n                \"inter_packet_delay\": 10\n            },\n            \"relationships\": {\n                \"alert_detectors\": {\n                    \"data\": []\n                },\n                \"test_type\": {\n                    \"data\": {\n                        \"id\": \"9\",\n                        \"type\": \"test_type\"\n                    }\n                },\n                \"nb_tests\": {\n                    \"data\": []\n                }\n            }\n        },\n        {\n            \"id\": \"48\",\n            \"type\": \"test_template\",\n            \"attributes\": {\n                \"label\": \"Sharepoint Tenant Alt\",\n                \"count\": 0,\n                \"interval\": 30,\n                \"timeout\": 5,\n                \"target\": \"test123.lightning.force.com\",\n                \"test_statuses\": {\n                    \"success\": 0,\n                    \"fail\": 0,\n                    \"warning\": 0,\n                    \"paused\": 0,\n                    \"unknown\": 0\n                },\n                \"dns_server\": null,\n                \"dns_type\": 1\n            },\n            \"relationships\": {\n                \"alert_detectors\": {\n                    \"data\": [\n                        {\n                            \"id\": \"2\",\n                            \"type\": \"alert_detector\"\n                        },\n                        {\n                            \"id\": \"6\",\n                            \"type\": \"alert_detector\"\n                        }\n                    ]\n                },\n                \"test_type\": {\n                    \"data\": {\n                        \"id\": \"2\",\n                        \"type\": \"test_type\"\n                    }\n                },\n                \"nb_tests\": {\n                    \"data\": []\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"233ad4af-6d6a-407a-a59d-affb0af6b4e3"},{"name":"/targets/target_template","id":"fc8b152a-12e4-45b8-8b06-cf7e9f4fba07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets/target_template","description":"<p>This endpoint gives the ability to easily create <code>targets</code> based on simplified <code>target_templates</code>.</p>\n<p>See the <a href=\"#folder-5d9afe03-f2e9-4423-aea5-976bb930791e\">SaaS Target</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["targets","target_template"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"bc41c19b-0071-470d-9ecc-354f4a9a4788","name":"Create a new template targets","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"targets\",\n        \"relationships\": {\n            \"target_templates\": {\n                \"data\": [\n                    {\n                        \"id\": \"website\",\n                        \"attributes\": {\n                            \"url\": \"https://netbeez.net\",\n                            \"name\": \"NetBeez Site\",\n                            \"ping_test\": true,\n                            \"jitter_and_mos_enabled\": true\n                        },\n                        \"type\": \"target_template\"\n                    },\n                    {\n                        \"id\": \"dns\",\n                        \"attributes\": {\n                            \"fqdn\": \"netbeez.net\",\n                            \"dns_type\": 1,\n                            \"nameserver_ips\": [\n                                \"4.4.8.8\",\n                                \"8.8.8.8\"\n                            ]\n                        },\n                        \"type\": \"target_template\"\n                    },\n                    {\n                        \"id\": \"vpn\",\n                        \"attributes\": {\n                            \"fqdn\": \"172.30.0.10\",\n                            \"ping_interval\": 5\n                        },\n                        \"type\": \"target_template\"\n                    },\n                    {\n                        \"id\": \"gateway\",\n                        \"attributes\": {\n                            \"ping_interval\": 5\n                        },\n                        \"type\": \"target_template\"\n                    }\n                ]\n            },\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fc8b152a-12e4-45b8-8b06-cf7e9f4fba07"},{"name":"/targets","id":"3e30912f-6691-4bc6-a004-d785dbaa5961","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets","description":"<p>This endpoint gives the ability to create custom <code>targets</code>.</p>\n<p>See the <a href=\"#folder-d027bace-4f9d-43a7-851b-08ea18313f25\">Target</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["targets"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"ef456eeb-b158-4f87-b107-ee3b0bae993b","name":"Create a new custom target","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"target\",\n        \"attributes\": {\n            \"name\": \"API Target\",\n            \"description\": \"\",\n            \"wired_test\": false,\n            \"wifi_test\": true,\n            \"smtp_notify\": true\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 122,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            },\n            \"contacts\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"email\": \"contact@company.com\"\n                        },\n                        \"type\": \"contact\"\n                    }\n                ]\n            },\n            \"test_templates\": {\n                \"data\": [\n                    {\n                        \"type\": \"test_template\",\n                        \"attributes\": {\n                            \"count\": 0,\n                            \"interval\": 5,\n                            \"timeout\": 5,\n                            \"target\": \"api.netbeez.net\",\n                            \"data_size\": 56,\n                            \"dont_fragment\": false,\n                            \"ping_type\": 2,\n                            \"port\": null,\n                            \"jitter_mos\": false,\n                            \"force_ipv6\": false\n                        },\n                        \"relationships\": {\n                            \"test_type\": {\n                                \"data\": {\n                                    \"id\": 1,\n                                    \"type\": \"test_type\"\n                                }\n                            },\n                            \"alert_detectors\": {\n                                \"data\": [\n                                    {\n                                        \"id\": 1,\n                                        \"type\": \"alert_detector\"\n                                    },\n                                    {\n                                        \"id\": 5,\n                                        \"type\": \"alert_detector\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    {\n                        \"type\": \"test_template\",\n                        \"attributes\": {\n                            \"count\": 0,\n                            \"interval\": 30,\n                            \"timeout\": 5,\n                            \"target\": \"api.netbeez.net\",\n                            \"dns_server\": \"\",\n                            \"dns_type\": 1\n                        },\n                        \"relationships\": {\n                            \"test_type\": {\n                                \"data\": {\n                                    \"id\": 2,\n                                    \"type\": \"test_type\"\n                                }\n                            },\n                            \"alert_detectors\": {\n                                \"data\": [\n                                    {\n                                        \"id\": 2,\n                                        \"type\": \"alert_detector\"\n                                    },\n                                    {\n                                        \"id\": 6,\n                                        \"type\": \"alert_detector\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    {\n                        \"type\": \"test_template\",\n                        \"attributes\": {\n                            \"count\": 0,\n                            \"interval\": 60,\n                            \"timeout\": 5,\n                            \"target\": \"https://api.netbeez.net\",\n                            \"http_method\": \"GET\"\n                        },\n                        \"relationships\": {\n                            \"test_type\": {\n                                \"data\": {\n                                    \"id\": 3,\n                                    \"type\": \"test_type\"\n                                }\n                            },\n                            \"alert_detectors\": {\n                                \"data\": [\n                                    {\n                                        \"id\": 3,\n                                        \"type\": \"alert_detector\"\n                                    },\n                                    {\n                                        \"id\": 7,\n                                        \"type\": \"alert_detector\"\n                                    }\n                                ]\n                            }\n                        }\n                    }\n                ]\n            },\n            \"monitoring_condition\": {\n                \"data\": {\n                    \"id\": 2,\n                    \"type\": \"monitoring_condition\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3e30912f-6691-4bc6-a004-d785dbaa5961"},{"name":"/targets/:id","id":"c5b47abf-c9b0-42b9-a5c8-b57dd91ca681","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": \"26\",\n    \"type\": \"target\",\n    \"relationships\": {\n      \"test_templates\": {\n        \"data\": [\n          {\n            \"id\": \"111\",\n            \"type\": \"test_template\",\n            \"relationships\": {\n              \"test_type\": {\n                \"data\": {\n                  \"type\": \"test_type\",\n                  \"id\": \"1\"\n                }\n              }\n            }\n          }\n        ]\n      },\n      \"monitoring_condition\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"monitoring_condition\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/targets/:id","description":"<p>This endpoint gives the ability to update a specified <code>target</code>.</p>\n<p>See the <a href=\"#folder-d027bace-4f9d-43a7-851b-08ea18313f25\">Target</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["targets",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"id":"a1ed4807-737c-4e05-bfc1-1aba937c7488","type":"any","value":"26","key":"id"}]}},"response":[{"id":"ee32af30-94dd-435d-a15e-2a9627fef9fd","name":"Update a target","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 144,\n        \"type\": \"target\",\n        \"attributes\": {\n            \"name\": \"API Target\",\n            \"description\": \"\",\n            \"wired_test\": false,\n            \"wifi_test\": true,\n            \"smtp_notify\": true\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 122,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"agent_groups\": {\n                \"data\": [\n                    {\n                        \"id\": 1,\n                        \"type\": \"agent_group\"\n                    }\n                ]\n            },\n            \"contacts\": {\n                \"data\": [\n                    {\n                        \"attributes\": {\n                            \"email\": \"contact@company.com\"\n                        },\n                        \"type\": \"contact\"\n                    }\n                ]\n            },\n            \"test_templates\": {\n                \"data\": [\n                    {\n                        \"id\": 20,\n                        \"type\": \"test_template\",\n                        \"attributes\": {\n                            \"count\": 0,\n                            \"interval\": 5,\n                            \"timeout\": 5,\n                            \"target\": \"api.netbeez.net\",\n                            \"data_size\": 56,\n                            \"dont_fragment\": false,\n                            \"ping_type\": 2,\n                            \"port\": null,\n                            \"jitter_mos\": false,\n                            \"force_ipv6\": false\n                        },\n                        \"relationships\": {\n                            \"test_type\": {\n                                \"data\": {\n                                    \"id\": 1,\n                                    \"type\": \"test_type\"\n                                }\n                            },\n                            \"alert_detectors\": {\n                                \"data\": [\n                                    {\n                                        \"id\": 1,\n                                        \"type\": \"alert_detector\"\n                                    },\n                                    {\n                                        \"id\": 5,\n                                        \"type\": \"alert_detector\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    {\n                        \"id\": 15,\n                        \"type\": \"test_template\",\n                        \"method\": \"remove\"\n                        \n                    },\n                    {\n                        \"type\": \"test_template\",\n                        \"attributes\": {\n                            \"count\": 0,\n                            \"interval\": 60,\n                            \"timeout\": 5,\n                            \"target\": \"https://api.netbeez.net\",\n                            \"http_method\": \"GET\"\n                        },\n                        \"relationships\": {\n                            \"test_type\": {\n                                \"data\": {\n                                    \"id\": 3,\n                                    \"type\": \"test_type\"\n                                }\n                            },\n                            \"alert_detectors\": {\n                                \"data\": [\n                                    {\n                                        \"id\": 3,\n                                        \"type\": \"alert_detector\"\n                                    },\n                                    {\n                                        \"id\": 7,\n                                        \"type\": \"alert_detector\"\n                                    }\n                                ]\n                            }\n                        }\n                    }\n                ]\n            },\n            \"monitoring_condition\": {\n                \"data\": {\n                    \"id\": 2,\n                    \"type\": \"monitoring_condition\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://[HOSTNAME]/targets/:id","protocol":"https","host":["[HOSTNAME]"],"path":["targets",":id"],"variable":[{"key":"id","value":"26"}]}},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"c5b47abf-c9b0-42b9-a5c8-b57dd91ca681"}],"id":"e23da8ac-e200-4948-bc4a-dbdaff79892a","_postman_id":"e23da8ac-e200-4948-bc4a-dbdaff79892a","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"bc41e3f6-3744-46fa-b5d9-6fea726c9685","_postman_id":"bc41e3f6-3744-46fa-b5d9-6fea726c9685","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Test APIs","item":[{"name":"DNS Results","item":[{"name":"/nb_tests/dns/results","id":"d4618b29-a738-4831-b94d-57667f479a37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests/dns/results?page[offset]=3&page[limit]=100&order[attributes]=value&order[direction]=asc","description":"<p>This endpoint gives the ability to retrieve <code>dns</code> results. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-1ab5a6ce-274a-4675-9cad-9d9407b41b37\">DNS Result</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","dns","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_test_templates</code>. You can filter on a single <code>template</code> or multiple <code>templates</code> by providing the <code>template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"9,13"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_tests</code>. You can filter on a single <code>nb_test</code> or multiple <code>nb_test</code> by providing the <code>nb_test</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"34,35"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>network_interface_types</code>. You can filter on a single <code>network_interface_type</code> or multiple <code>network_interface_types</code> as a comma separated list. Available <code>network_interface_types</code> are:</p>\n<ul>\n<li><code>wired</code></li>\n<li><code>10/100</code></li>\n<li><code>gigabit</code></li>\n<li><code>virtual</code></li>\n<li><code>wireless</code></li>\n<li><code>vpn</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interface_types]","value":"wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>ts</code> (timestamp). This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds). \nFor the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1652205682006"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>value</code>. This filter allows you to provide a single operator and values to filter <code>value</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[value][value1]</code> and <code>filter[value][value2]</code> providing a number for each.<br />For the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[value][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[value][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[value][value]","value":"240"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value2]","value":""},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"3"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"100"},{"description":{"content":"<p>Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:</p>\n<ul>\n<li><code>value</code></li>\n<li><code>error_code</code></li>\n<li><code>network_interface_type</code></li>\n<li><code>ts</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"value"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and use either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"asc"}],"variable":[{"id":"7b6e84d9-fb37-41fa-8a9c-212855807162","type":"any","value":"dns","key":"test_type"}]}},"response":[{"id":"9af70648-8de5-49ce-b0dd-42879baf6787","name":"Get all ping results from an agent","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/:test_type/results?filter[agents]=226&filter[ts][operator]=<=>&filter[ts][value1]=1692714467449&filter[ts][value2]=1692800867449&page[offset]=1&page[limit]=10&order[attributes]=ts&order[direction]=asc","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests",":test_type","results"],"query":[{"key":"filter[agents]","value":"226","description":"Filter `results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list."},{"key":"filter[test_templates]","value":"9,13","description":"Filter `results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"34,35","description":"Filter `results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[network_interface_types]","value":"wireless","description":"Filter `results` based on `network_interface_types`. You can filter on a single `network_interface_type` or multiple `network_interface_types` as a comma separated list. Available `network_interface_types` are:\n - `wired`\n - `10/100`\n - `gigabit`\n - `virtual`\n - `wireless`\n - `vpn`\n ","disabled":true},{"key":"filter[ts][operator]","value":"<=>","description":"Filter `results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds). \nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp."},{"key":"filter[ts][value]","value":"1652205682006","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[ts][value1]","value":"1692714467449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[ts][value2]","value":"1692800867449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[value][operator]","value":">=","description":"Filter `results` based on `value`. This filter allows you to provide a single operator and values to filter `value` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[value][value1]` and `filter[value][value2]` providing a number for each.  \nFor the `<=,<,=,>,>=` operators use the `filter[value][value]` providing a number.","disabled":true},{"key":"filter[value][value]","value":"240","description":"Use if `filter[value][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[value][value1]","value":"","description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[value][value2]","value":null,"description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"10","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:\n- `value`\n- `error_code`\n- `network_interface_type`\n- `ts`"},{"key":"order[direction]","value":"asc","description":"Use if `order[attributes]` is provided and use either `asc` or `desc` direction."}],"variable":[{"key":"test_type","value":"ping","description":"Get results of specified `test_type`. Available `test_types` are:\n- `ping`\n- `dns`\n- `http`"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d4618b29-a738-4831-b94d-57667f479a37"}],"id":"7c83f3db-c425-4429-9426-9609a79cf2d3","_postman_id":"7c83f3db-c425-4429-9426-9609a79cf2d3","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"HTTP Results","item":[{"name":"/nb_tests/:test_type/results","id":"e92a4d5c-2ff1-4d50-8b57-af29b2f59523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests/:test_type/results?page[offset]=3&page[limit]=100&order[attributes]=value&order[direction]=asc","description":"<p>This endpoint gives the ability to retrieve <code>http</code> results. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-c63ed595-fbee-4c90-a3d8-1251dd9ba743\">HTTP Result</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests",":test_type","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_test_templates</code>. You can filter on a single <code>template</code> or multiple <code>templates</code> by providing the <code>template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"9,13"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_tests</code>. You can filter on a single <code>nb_test</code> or multiple <code>nb_test</code> by providing the <code>nb_test</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"34,35"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>network_interface_types</code>. You can filter on a single <code>network_interface_type</code> or multiple <code>network_interface_types</code> as a comma separated list. Available <code>network_interface_types</code> are:</p>\n<ul>\n<li><code>wired</code></li>\n<li><code>10/100</code></li>\n<li><code>gigabit</code></li>\n<li><code>virtual</code></li>\n<li><code>wireless</code></li>\n<li><code>vpn</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interface_types]","value":"wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>ts</code> (timestamp). This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds). \nFor the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1652205682006"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>value</code>. This filter allows you to provide a single operator and values to filter <code>value</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[value][value1]</code> and <code>filter[value][value2]</code> providing a number for each.<br />For the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[value][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[value][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[value][value]","value":"240"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value2]","value":""},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"3"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"100"},{"description":{"content":"<p>Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:</p>\n<ul>\n<li><code>value</code></li>\n<li><code>error_code</code></li>\n<li><code>network_interface_type</code></li>\n<li><code>ts</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"value"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and use either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"asc"}],"variable":[{"description":{"content":"<p>Get results of specified <code>test_type</code>. Available <code>test_types</code> are:</p>\n<ul>\n<li><code>ping</code></li>\n<li><code>dns</code></li>\n<li><code>http</code></li>\n</ul>\n","type":"text/plain"},"type":"any","value":"http","key":"test_type"}]}},"response":[{"id":"42540f42-d7b7-4713-aada-887301715363","name":"Get all ping results from an agent","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/:test_type/results?filter[agents]=226&filter[ts][operator]=<=>&filter[ts][value1]=1692714467449&filter[ts][value2]=1692800867449&page[offset]=1&page[limit]=10&order[attributes]=ts&order[direction]=asc","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests",":test_type","results"],"query":[{"key":"filter[agents]","value":"226","description":"Filter `results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list."},{"key":"filter[test_templates]","value":"9,13","description":"Filter `results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"34,35","description":"Filter `results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[network_interface_types]","value":"wireless","description":"Filter `results` based on `network_interface_types`. You can filter on a single `network_interface_type` or multiple `network_interface_types` as a comma separated list. Available `network_interface_types` are:\n - `wired`\n - `10/100`\n - `gigabit`\n - `virtual`\n - `wireless`\n - `vpn`\n ","disabled":true},{"key":"filter[ts][operator]","value":"<=>","description":"Filter `results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds). \nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp."},{"key":"filter[ts][value]","value":"1652205682006","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[ts][value1]","value":"1692714467449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[ts][value2]","value":"1692800867449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[value][operator]","value":">=","description":"Filter `results` based on `value`. This filter allows you to provide a single operator and values to filter `value` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[value][value1]` and `filter[value][value2]` providing a number for each.  \nFor the `<=,<,=,>,>=` operators use the `filter[value][value]` providing a number.","disabled":true},{"key":"filter[value][value]","value":"240","description":"Use if `filter[value][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[value][value1]","value":"","description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[value][value2]","value":null,"description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"10","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:\n- `value`\n- `error_code`\n- `network_interface_type`\n- `ts`"},{"key":"order[direction]","value":"asc","description":"Use if `order[attributes]` is provided and use either `asc` or `desc` direction."}],"variable":[{"key":"test_type","value":"ping","description":"Get results of specified `test_type`. Available `test_types` are:\n- `ping`\n- `dns`\n- `http`"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e92a4d5c-2ff1-4d50-8b57-af29b2f59523"}],"id":"ef555b3f-65af-491d-99b0-9f73ab6e1173","_postman_id":"ef555b3f-65af-491d-99b0-9f73ab6e1173","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Monitoring Conditions","item":[{"name":"/monitoring_conditions","id":"635fdf27-d097-45c2-b587-8aacd1090c60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/monitoring_conditions?filter[ids]=1,2","description":"<p>This endpoint gives the ability to retrieve <code>monitoring_condition</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-47e0cacb-4067-44f2-bf98-96b8d289f197\">Monitoring Condition</a> <a href=\"#folder/4425180-65f7fde0-b8d3-49f7-9db6-43122a2df75b\"></a>data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["monitoring_conditions"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>monitoring_conditions</code> based on <code>name</code>. This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"test"},{"key":"filter[ids]","value":"1,2"}],"variable":[]}},"response":[{"id":"2a75fa5a-f362-4d3d-98b3-a06b01e632c7","name":"Get all ping results from an agent","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/:test_type/results?filter[agents]=226&filter[ts][operator]=<=>&filter[ts][value1]=1692714467449&filter[ts][value2]=1692800867449&page[offset]=1&page[limit]=10&order[attributes]=ts&order[direction]=asc","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests",":test_type","results"],"query":[{"key":"filter[agents]","value":"226","description":"Filter `results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list."},{"key":"filter[test_templates]","value":"9,13","description":"Filter `results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"34,35","description":"Filter `results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[network_interface_types]","value":"wireless","description":"Filter `results` based on `network_interface_types`. You can filter on a single `network_interface_type` or multiple `network_interface_types` as a comma separated list. Available `network_interface_types` are:\n - `wired`\n - `10/100`\n - `gigabit`\n - `virtual`\n - `wireless`\n - `vpn`\n ","disabled":true},{"key":"filter[ts][operator]","value":"<=>","description":"Filter `results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds). \nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp."},{"key":"filter[ts][value]","value":"1652205682006","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[ts][value1]","value":"1692714467449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[ts][value2]","value":"1692800867449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[value][operator]","value":">=","description":"Filter `results` based on `value`. This filter allows you to provide a single operator and values to filter `value` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[value][value1]` and `filter[value][value2]` providing a number for each.  \nFor the `<=,<,=,>,>=` operators use the `filter[value][value]` providing a number.","disabled":true},{"key":"filter[value][value]","value":"240","description":"Use if `filter[value][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[value][value1]","value":"","description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[value][value2]","value":null,"description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"10","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:\n- `value`\n- `error_code`\n- `network_interface_type`\n- `ts`"},{"key":"order[direction]","value":"asc","description":"Use if `order[attributes]` is provided and use either `asc` or `desc` direction."}],"variable":[{"key":"test_type","value":"ping","description":"Get results of specified `test_type`. Available `test_types` are:\n- `ping`\n- `dns`\n- `http`"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"635fdf27-d097-45c2-b587-8aacd1090c60"}],"id":"95226c52-9ce2-4429-8547-db8e527a381c","_postman_id":"95226c52-9ce2-4429-8547-db8e527a381c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"NbTests","item":[{"name":"/nb_tests","id":"2a675cd8-1d44-40ba-a182-e1b65688c234","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests?page[offset]=1&page[limit]=25&type=beta","description":"<p>This endpoint gives the ability to retrieve <code>nb_test</code> informationSee below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-1ab5a6ce-274a-4675-9cad-9d9407b41b37\">NbTest</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on the <code>category</code> of the source agent. <code>category</code> can be one of the following values:</p>\n<ul>\n<li><code>network_agent</code></li>\n<li><code>remote_worker_agent</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on the <code>agent_classes</code> of the source agent.  <code>agent_classes</code> include following categories: </p>\n<ul>\n<li><code>container</code></li>\n<li><code>faste</code></li>\n<li><code>wireless</code></li>\n<li><code>cumulus</code></li>\n<li><code>external</code></li>\n<li><code>gige</code></li>\n<li><code>software</code></li>\n<li><code>virtual</code></li>\n<li><code>mac</code></li>\n<li><code>windows</code></li>\n<li><code>igel</code>\nYou can filter on a single <code>agent_class</code> or multiple <code>agent_classes</code> by providing the <code>agent classes</code> as a comma separated list.</li>\n</ul>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"gige,wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>ad_hoc</code> tests. <code>ad_hoc</code> will be one of the following values:</p>\n<ul>\n<li><code>true</code></li>\n<li><code>false</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[ad_hoc]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>current_alert_modes</code>. <code>current_alert_modes</code> include following modes: </p>\n<ul>\n<li><code>stopped</code></li>\n<li><code>unknown</code></li>\n<li><code>paused</code></li>\n<li><code>fail</code></li>\n<li><code>warning</code></li>\n<li><code>success</code></li>\n</ul>\n<p>You can filter on a single <code>current_alert_mode</code> or multiple <code>current_alert_modes</code> by providing the <code>current_alert_modes</code> as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[current_alert_modes]","value":"unknown,stopped"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>current_states</code>. <code>current_states</code> include following states: </p>\n<ul>\n<li><code>initialization</code></li>\n<li><code>running</code></li>\n<li><code>paused</code></li>\n<li><code>stop-requested</code></li>\n<li><code>stopped</code></li>\n<li><code>exception</code></li>\n<li><code>change-requested</code></li>\n<li><code>pause-requested</code></li>\n<li><code>resume-requested</code></li>\n</ul>\n<p>You can filter on a single <code>current_state</code> or multiple <code>current_states</code> by providing the <code>current_states</code> as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[current_states]","value":"running,paused"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>network_interfaces</code>. You can filter on a single <code>network_interface</code> or multiple <code>network_interfaces</code> as a comma separated list. Available network_interfaces are:</p>\n<ul>\n<li>eth0</li>\n<li>wlan0</li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interfaces]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>network_interface_types</code>. You can filter on a single <code>network_interface_type</code> or multiple <code>network_interface_types</code> as a comma separated list. Available <code>network_interface_types</code> are:</p>\n<ul>\n<li>Wired<ul>\n<li><code>wired</code></li>\n<li><code>10/100</code></li>\n</ul>\n</li>\n<li><code>gigabit</code></li>\n<li><code>virtual</code></li>\n<li>Wireless</li>\n<li><code>wireless</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interface_types]","value":"wireless,gigabit"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>schedule_types</code>. You can filter on a single <code>schedule_type</code> or multiple <code>schedule_types</code> as a comma separated list. Available <code>schedule_types</code> are:</p>\n<ul>\n<li><code>periodic</code></li>\n<li><code>scheduled</code></li>\n<li><code>ad_hoc</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[schedule_types]","value":"periodic,scheduled"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>targets</code>. You can filter on a single <code>target</code> or multiple <code>targets</code> by providing the <code>target</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[targets]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>test_templates</code>. You can filter on a single <code>test_template</code> or multiple <code>test_templates</code> by providing the <code>test_template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>test_types</code>. You can filter on a single <code>test_type</code> or multiple <code>test_types</code> as a comma separated list. Available <code>test_types</code> are:</p>\n<ul>\n<li><code>ping</code></li>\n<li><code>dns</code></li>\n<li><code>http</code></li>\n<li><code>traceroute</code></li>\n<li><code>path_analysis</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[test_types]","value":"http,ping"},{"disabled":true,"description":{"content":"<p>Filter <code>nb_tests</code> based on <code>wifi_profiles</code>. You can filter on a single <code>wifi_profile</code> or multiple <code>wifi_profiles</code> by providing the <code>wifi_profile</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[wifi_profiles]","value":"1,2"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"key":"type","value":"beta"}],"variable":[]}},"response":[],"_postman_id":"2a675cd8-1d44-40ba-a182-e1b65688c234"}],"id":"9e672291-fd5a-465c-a677-8688c8411b9b","_postman_id":"9e672291-fd5a-465c-a677-8688c8411b9b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Traceroute Results","item":[{"name":"/nb_tests/traceroutes/results","id":"d824904a-ce47-4501-b50d-272ac864d0eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/nb_tests/traceroutes/results?page[offset]=1&page[limit]=5","description":"<p>This endpoint gives the ability to retrieve <code>traceroute</code> results. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder/4425180-a5afdd1d-28ec-4c0b-8f5d-5dc08d6347ef\">Traceroute Results</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","traceroutes","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>ts</code> (timestamp).  This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1613781319027"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>agents</code>.  You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,15"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>test_templates</code>. You can filter on a single <code>template</code> or multiple <code>templates</code> by providing the <code>template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"11"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>domain</code>. This filter is a string search, any string matches for <code>domain</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[domain]","value":"dns.google"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> by <code>domain</code> based on a provided regex pattern. This filter will return any <code>results</code> that match <code>domain</code> to the provided regex. d</p>\n","type":"text/plain"},"key":"filter[domain][regex]","value":"google"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>ip</code>. This filter is a string search, any string matches for <code>ip</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[ip]","value":"8.8.8.8"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> by <code>ip</code> based on a provided regex pattern. This filter will return any <code>results</code> that match <code>ip</code> to the provided regex.</p>\n","type":"text/plain"},"key":"filter[ip][regex]","value":"8.8.8"},{"disabled":true,"description":{"content":"<p>Filter <code>traceroute_results</code> based on <code>rtt</code>.  This filter allows you to provide a single operator and values to filter <code>rtt</code> and <code>results</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[rtt][value1]</code> and <code>filter[rtt][value2]</code> providing a number for each.  </p>\n<p>For the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[rtt][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[rtt][operator]","value":"<"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[rtt][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[rtt][value]","value":"0.6"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[rtt][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[rtt][value1]","value":"0.6"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[rtt][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[rtt][value2]","value":"0.65"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"5"}],"variable":[]}},"response":[],"_postman_id":"d824904a-ce47-4501-b50d-272ac864d0eb"}],"id":"75523d97-4591-41fd-97a5-c8352d80740b","description":"<p>The Traceroute Results resource allows retrieving of results for Traceroute tests performed by <code>agents</code>.</p>\n","_postman_id":"75523d97-4591-41fd-97a5-c8352d80740b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Path Analysis Results","item":[{"name":"/nb_tests/path_analysis/results","id":"de6c6606-834d-4a49-a16c-01a943ae73a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests/path_analysis/results?page[limit]=25&page[offset]=1","description":"<p>This endpoint gives the ability to retrieve <code>path_analysis</code> results. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder/4425180-e8634d9a-3510-4408-902e-0c38fe98f061\">Path Analysis Results</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","path_analysis","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>path_analysis_results</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>path_analysis_results</code> based on <code>nb_tests</code>. You can filter on a single <code>nb_test</code> or multiple <code>nb_test</code> by providing the <code>nb_test</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>path_analysis_results</code> based on <code>nb_test_templates</code>. You can filter on a single <code>template</code> or multiple <code>templates</code> by providing the <code>template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter <code>path_analysis_result</code> based on <code>ip_address</code>. This filter is a string search, any string matches for <code>ip_address</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[ip_address]","value":"192.168.1.10"},{"disabled":true,"description":{"content":"<p>Filter <code>path_analysis_results</code> based on <code>ts</code> (timestamp). This filter allows you to provide a single operator and value(s) to filter <code>ts </code>and <code>results</code> that fall within the parameters.\nFor the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds).\nFor the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1613781319027"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"disabled":true,"key":"include","value":"supplemental"}],"variable":[]}},"response":[{"id":"f99c80b7-ce6b-4207-a0c8-5819026f95d2","name":"Get all PA results for an agent on a template","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/path_analysis/results?filter[agents]=280&filter[nb_test_templates]=99&filter[ts][operator]=>&filter[ts][value]=1696905223183&page[limit]=25&page[offset]=1","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests","path_analysis","results"],"query":[{"key":"filter[agents]","value":"280","description":"Filter `path_analysis_results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list."},{"key":"filter[nb_tests]","value":"1","description":"Filter `path_analysis_results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[nb_test_templates]","value":"99","description":"Filter `path_analysis_results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list."},{"key":"filter[ip_address]","value":"192.168.1.10","description":"Filter `path_analysis_result` based on `ip_address`. This filter is a string search, any string matches for `ip_address` will be provided.","disabled":true},{"key":"filter[ts][operator]","value":">","description":"Filter `path_analysis_results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts `and `results` that fall within the parameters.\nFor the `<=>`(between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds).\nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp."},{"key":"filter[ts][value]","value":"1696905223183","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`."},{"key":"filter[ts][value1]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value2]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[limit]","value":"25","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1696987559577-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696987559577,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696988162846-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696988162846,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986721038-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696986721038,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2077\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696988954738-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696988954738,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2077\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989995201-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696989995201,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2077\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986727537-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696986727537,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986969020-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696986969020,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696987875564-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696987875564,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696987996558-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696987996558,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696988357748-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696988357748,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989389790-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696989389790,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989510544-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696989510544,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989756125-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696989756125,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989876232-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696989876232,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990117190-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696990117190,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2082\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986727177-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696986727177,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2087\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696987394148-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696987394148,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2087\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696988357217-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696988357217,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2087\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989878941-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696989878941,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2087\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986578165-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696986578165,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2097\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696989852775-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696989852775,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2097\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696986610672-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696986610672,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2112\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696988175931-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 999,\n                \"ts\": 1696988175931,\n                \"error_message\": \"Path analysis test unknown error\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2112\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696987598358-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 997,\n                \"ts\": 1696987598358,\n                \"error_message\": \"Time out\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2129\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696987898392-0-0\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": null,\n                \"ip_address\": null,\n                \"natted\": null,\n                \"destination\": null,\n                \"dest_port\": 0,\n                \"hop_number\": 0,\n                \"error_code\": 994,\n                \"ts\": 1696987898392,\n                \"error_message\": \"Path Analysis test host unresolvable\"\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2129\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"agents\": \"280\",\n            \"nb_test_templates\": \"99\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"next\": true\n        }\n    }\n}"},{"id":"5990dd87-8144-4781-b43a-529007cfec82","name":"Get all hops from a specific IP address","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/path_analysis/results?filter[ip_address]=4.68.70.46&page[limit]=25&page[offset]=1","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests","path_analysis","results"],"query":[{"key":"filter[agents]","value":"1","description":"Filter `path_analysis_results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"1","description":"Filter `path_analysis_results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[test_templates]","value":"1","description":"Filter `path_analysis_results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list.","disabled":true},{"key":"filter[ip_address]","value":"4.68.70.46","description":"Filter `path_analysis_result` based on `ip_address`. This filter is a string search, any string matches for `ip_address` will be provided."},{"key":"filter[ts][operator]","value":"<=>","description":"Filter `path_analysis_results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts `and `results` that fall within the parameters.\nFor the `<=>`(between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds).\nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[ts][value]","value":"1613781319027","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[ts][value1]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value2]","value":"","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[limit]","value":"25","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1696990276352-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13284,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990276352,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990821778-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 15883,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990821778,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696991544812-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12650,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696991544812,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696991906734-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13261,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696991906734,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992268876-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13657,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992268876,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992389367-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12916,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992389367,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993603939-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12857,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993603939,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993724708-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13073,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993724708,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990276352-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14124,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990276352,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990517302-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12836,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990517302,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696991424339-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14208,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696991424339,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992268876-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13161,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992268876,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992809454-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12302,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992809454,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993170934-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13006,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993170934,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993362772-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13046,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993362772,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993603939-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12932,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993603939,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990821778-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14604,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990821778,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992630784-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12650,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992630784,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993362772-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12871,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993362772,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993483481-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12687,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993483481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696993603939-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12673,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696993603939,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990276352-33437-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13343,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990276352,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696990821778-33437-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14220,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696990821778,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696991544812-33437-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12984,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696991544812,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696992027716-33437-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12986,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696992027716,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"ip_address\": \"4.68.70.46\"\n        },\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"next\": true\n        }\n    }\n}"}],"_postman_id":"de6c6606-834d-4a49-a16c-01a943ae73a5"},{"name":"/nb_tests/path_analysis/results/:timestamp","id":"8ad4714b-b460-42dc-b8c5-14df75ce7b10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests/path_analysis/results/:timestamp","description":"<p>This endpoint gives the ability to retrieve a specific <code>path_analysis</code> result.</p>\n<p>See the <a href=\"#folder/4425180-af4dc017-4971-4285-8c7a-835acc93ec5a\">Path Analysis Results Timestamp</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","path_analysis","results",":timestamp"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>timestamp</code> of the <code>path_analysis_result</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"","key":"timestamp"}]}},"response":[{"id":"678c3e8d-f1fb-45f2-9314-b6be00b99d4a","name":"Get PA result all hops by timestamp","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/path_analysis/results/:timestamp","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests","path_analysis","results",":timestamp"],"variable":[{"key":"timestamp","value":"1696907549481","description":"Provide the `timestamp` of the `path_analysis_result` you wish to retrieve."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1696907549481-33434-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1280,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13399,\n                \"ip_address\": \"108.170.232.199\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12401,\n                \"ip_address\": \"142.250.209.75\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14463,\n                \"ip_address\": \"142.251.77.80\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 37953,\n                \"ip_address\": \"142.250.209.38\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12702,\n                \"ip_address\": \"142.250.238.7\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1498,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11356,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33434,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1846,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13263,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12663,\n                \"ip_address\": \"142.251.64.102\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33434-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12638,\n                \"ip_address\": \"108.170.246.66\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33434,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 607,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13558,\n                \"ip_address\": \"142.251.49.71\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14445,\n                \"ip_address\": \"142.251.49.95\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14017,\n                \"ip_address\": \"142.251.77.104\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12888,\n                \"ip_address\": \"142.250.209.246\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13829,\n                \"ip_address\": \"142.250.235.87\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1633,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11425,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33435,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1636,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11956,\n                \"ip_address\": \"4.68.144.142\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12318,\n                \"ip_address\": \"142.250.232.78\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33435-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12633,\n                \"ip_address\": \"108.170.246.2\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33435,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 721,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13373,\n                \"ip_address\": \"142.251.49.71\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13660,\n                \"ip_address\": \"142.251.49.81\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12678,\n                \"ip_address\": \"172.253.65.237\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13718,\n                \"ip_address\": \"142.251.244.136\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13980,\n                \"ip_address\": \"142.250.235.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1706,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11787,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33436,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1829,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12796,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12635,\n                \"ip_address\": \"142.250.232.78\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33436-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 54151,\n                \"ip_address\": \"108.170.246.2\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33436,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 766,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11529,\n                \"ip_address\": \"142.251.49.155\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13469,\n                \"ip_address\": \"142.251.49.165\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11462,\n                \"ip_address\": \"142.251.66.133\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12198,\n                \"ip_address\": \"216.239.63.197\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1602,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11265,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33437,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 6517,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13163,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13062,\n                \"ip_address\": \"108.170.246.33\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33437-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13055,\n                \"ip_address\": \"108.170.246.49\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33437,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 692,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13027,\n                \"ip_address\": \"142.251.49.21\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12643,\n                \"ip_address\": \"209.85.143.232\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14426,\n                \"ip_address\": \"142.250.235.87\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1978,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11495,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33438,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 2460,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12769,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 10198,\n                \"ip_address\": \"108.170.232.18\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33438-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13076,\n                \"ip_address\": \"108.170.246.3\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33438,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 665,\n                \"ip_address\": \"172.29.0.1\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11675,\n                \"ip_address\": \"142.251.49.77\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 91611,\n                \"ip_address\": \"142.251.49.81\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13726,\n                \"ip_address\": \"142.251.77.138\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13791,\n                \"ip_address\": \"142.250.210.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12812,\n                \"ip_address\": \"142.250.211.25\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1926,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 11397,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33439,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1759,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13269,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13197,\n                \"ip_address\": \"108.170.246.33\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33439-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13171,\n                \"ip_address\": \"108.170.246.34\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33439,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-1\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 1,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-10\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 10,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-11\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13292,\n                \"ip_address\": \"142.251.49.167\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 11,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-12\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 12,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-13\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12946,\n                \"ip_address\": \"142.251.244.158\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 13,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-14\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 14270,\n                \"ip_address\": \"142.250.238.41\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 14,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-15\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 15,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-16\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 16,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-17\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 17,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-18\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 18,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-19\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 19,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-2\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 1639,\n                \"ip_address\": \"164.52.244.85\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 2,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-20\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 20,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-21\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 21,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-22\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 22,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-23\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 23,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-24\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12028,\n                \"ip_address\": \"142.251.167.99\",\n                \"natted\": false,\n                \"destination\": true,\n                \"dest_port\": 33440,\n                \"hop_number\": 24,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-3\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 2178,\n                \"ip_address\": \"64.58.254.226\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 3,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-4\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 4,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-5\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 5,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-6\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12564,\n                \"ip_address\": \"4.68.70.46\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 6,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-7\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 0,\n                \"ip_address\": \"*\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 7,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-8\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 13796,\n                \"ip_address\": \"108.170.240.97\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 8,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        },\n        {\n            \"id\": \"1696907549481-33440-9\",\n            \"type\": \"path_analysis_result\",\n            \"attributes\": {\n                \"rtt\": 12919,\n                \"ip_address\": \"108.170.240.98\",\n                \"natted\": false,\n                \"destination\": false,\n                \"dest_port\": 33440,\n                \"hop_number\": 9,\n                \"error_code\": null,\n                \"ts\": 1696907549481,\n                \"error_message\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"2072\",\n                        \"type\": \"test_template\"\n                    }\n                },\n                \"wifi_profile\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"next\": false\n        }\n    }\n}"}],"_postman_id":"8ad4714b-b460-42dc-b8c5-14df75ce7b10"}],"id":"b130d31c-488d-44b5-9efa-f32694d39b63","_postman_id":"b130d31c-488d-44b5-9efa-f32694d39b63","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Ping Results","item":[{"name":"/nb_tests/ping/results","id":"2f21d01b-ce43-4a7d-a0b5-7a47f4d61eb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/nb_tests/ping/results?page[offset]=3&page[limit]=100&order[attributes]=value&order[direction]=asc","description":"<p>This endpoint gives the ability to retrieve <code>ping</code> results. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder/4425180-65f7fde0-b8d3-49f7-9db6-43122a2df75b\">Ping Results </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","ping","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>agents</code>. You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_test_templates</code>. You can filter on a single <code>template</code> or multiple <code>templates</code> by providing the <code>template</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[test_templates]","value":"9,13"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>nb_tests</code>. You can filter on a single <code>nb_test</code> or multiple <code>nb_test</code> by providing the <code>nb_test</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[tests]","value":"34,35"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>network_interface_types</code>. You can filter on a single <code>network_interface_type</code> or multiple <code>network_interface_types</code> as a comma separated list. Available <code>network_interface_types</code> are:</p>\n<ul>\n<li><code>wired</code></li>\n<li><code>10/100</code></li>\n<li><code>gigabit</code></li>\n<li><code>virtual</code></li>\n<li><code>wireless</code></li>\n<li><code>vpn</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[network_interface_types]","value":"wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>ts</code> (timestamp). This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds). \nFor the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1652205682006"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":""},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>value</code>. This filter allows you to provide a single operator and values to filter <code>value</code> and <code>results</code> that fall within the parameters. \nFor the <code>&lt;=&gt;</code> (between) operator use the <code>filter[value][value1]</code> and <code>filter[value][value2]</code> providing a number for each.<br />For the <code>&lt;=,&lt;,=,&gt;,&gt;=</code> operators use the <code>filter[value][value]</code> providing a number.</p>\n","type":"text/plain"},"key":"filter[value][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,=,&gt;,&gt;=</code>.</p>\n","type":"text/plain"},"key":"filter[value][value]","value":"240"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value1]","value":""},{"disabled":true,"description":{"content":"<p>Use if <code>filter[value][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[value][value2]","value":""},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"3"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page. The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"100"},{"description":{"content":"<p>Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:</p>\n<ul>\n<li><code>value</code></li>\n<li><code>error_code</code></li>\n<li><code>network_interface_type</code></li>\n<li><code>ts</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"value"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and use either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"asc"}],"variable":[{"id":"cad13e77-f392-49fc-b756-cb7cc018ef24","type":"any","value":"ping","key":"test_type"}]}},"response":[{"id":"2bd35207-3965-44ca-9445-00b4c3942fbc","name":"Get all ping results from an agent","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/nb_tests/:test_type/results?filter[agents]=226&filter[ts][operator]=<=>&filter[ts][value1]=1692714467449&filter[ts][value2]=1692800867449&page[offset]=1&page[limit]=10&order[attributes]=ts&order[direction]=asc","protocol":"https","host":["[HOSTNAME]"],"path":["nb_tests",":test_type","results"],"query":[{"key":"filter[agents]","value":"226","description":"Filter `results` based on `agents`. You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list."},{"key":"filter[test_templates]","value":"9,13","description":"Filter `results` based on `nb_test_templates`. You can filter on a single `template` or multiple `templates` by providing the `template` ids as a comma separated list.","disabled":true},{"key":"filter[tests]","value":"34,35","description":"Filter `results` based on `nb_tests`. You can filter on a single `nb_test` or multiple `nb_test` by providing the `nb_test` ids as a comma separated list.","disabled":true},{"key":"filter[network_interface_types]","value":"wireless","description":"Filter `results` based on `network_interface_types`. You can filter on a single `network_interface_type` or multiple `network_interface_types` as a comma separated list. Available `network_interface_types` are:\n - `wired`\n - `10/100`\n - `gigabit`\n - `virtual`\n - `wireless`\n - `vpn`\n ","disabled":true},{"key":"filter[ts][operator]","value":"<=>","description":"Filter `results` based on `ts` (timestamp). This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds). \nFor the `<=,<,=,>,>=` operators use the `filter[ts][value]` providing a unix timestamp."},{"key":"filter[ts][value]","value":"1652205682006","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[ts][value1]","value":"1692714467449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[ts][value2]","value":"1692800867449","description":"Use if `filter[ts][operator]` is provided and is `<=>`."},{"key":"filter[value][operator]","value":">=","description":"Filter `results` based on `value`. This filter allows you to provide a single operator and values to filter `value` and `results` that fall within the parameters. \nFor the `<=>` (between) operator use the `filter[value][value1]` and `filter[value][value2]` providing a number for each.  \nFor the `<=,<,=,>,>=` operators use the `filter[value][value]` providing a number.","disabled":true},{"key":"filter[value][value]","value":"240","description":"Use if `filter[value][operator]` is provided and is one of the following: `<=,<,=,>,>=`.","disabled":true},{"key":"filter[value][value1]","value":"","description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[value][value2]","value":null,"description":"Use if `filter[value][operator]` is provided and is `<=>`.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload. By default the first page is returned."},{"key":"page[limit]","value":"10","description":"Use `page[limit]` to specify how many results to return on each page. The default limit is 25."},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes. You may provide a single attribute or multiple attributes as a comma separated list. The attributes will be applied in the order they are provided. Use in conjunction with order[direction]. You may only order attributes in the same direction. Available attributes for ordering are:\n- `value`\n- `error_code`\n- `network_interface_type`\n- `ts`"},{"key":"order[direction]","value":"asc","description":"Use if `order[attributes]` is provided and use either `asc` or `desc` direction."}],"variable":[{"key":"test_type","value":"ping","description":"Get results of specified `test_type`. Available `test_types` are:\n- `ping`\n- `dns`\n- `http`"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2f21d01b-ce43-4a7d-a0b5-7a47f4d61eb6"}],"id":"d66e708a-2931-4d19-95b7-42a187c8fdf2","_postman_id":"d66e708a-2931-4d19-95b7-42a187c8fdf2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Scheduled Test Templates","item":[{"name":"/scheduled_nb_test_templates","id":"cf608a51-f0a0-43e9-bbd7-6bbecd6ceca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json?order[attributes]=label&order[direction]=asc&page[offset]=1&page[limit]=25","description":"<p>This endpoint gives the ability to retrieve <code>scheduled_nb_test_templates</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder/4425180-5dc38b18-cd00-4fc6-a7c5-0bdad30a4991\">Scheduled Test Templates </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates.json"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>scheduled_nb_test_templates</code> based on <code>label</code>.   This filter is a string search, any string matches for <code>label</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[label]","value":"My speedtest"},{"disabled":true,"description":{"content":"<p>Filter <code>scheduled_nb_test_templates</code> based on <code>test_type_id</code>.   This filter is used to return only tests of a specific type. For reference: Iperf is <code>5</code>, Network Speed is <code>7</code> and VoIP is<code>8</code>.</p>\n","type":"text/plain"},"key":"filter[test_types]","value":"5"},{"disabled":true,"description":{"content":"<p>Filter the <code>scheduled_nb_test_templates</code> based on the set of agent ids provided as source agents. The returned set of tests will have all the agents provided as source agents.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2,3"},{"disabled":true,"description":{"content":"<p>Filter the <code>scheduled_nb_test_templates</code> based on the destination agent's id.</p>\n","type":"text/plain"},"key":"filter[destination_agent]","value":"1"},{"disabled":true,"description":{"content":"<p>Filter the <code>scheduled_nb_test_templates</code> based on the destination FQDN or IP address of a test. This is mostly for any M-to-1 Iperf tests.</p>\n","type":"text/plain"},"key":"filter[by_destination]","value":"iperf.example.com"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>label</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"label"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and use either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"asc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"}],"variable":[]}},"response":[],"_postman_id":"cf608a51-f0a0-43e9-bbd7-6bbecd6ceca6"},{"name":"/scheduled_nb_test_templates/:id","id":"ea32c4de-c7a7-4ff8-b298-4ff943952b95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/scheduled_nb_test_templates/:id","description":"<p>This endpoint gives the ability to retrieve a specific <code>scheduled_nb_test_template</code> information.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-75aa0f7d-73ce-4007-8c52-04c943c63a5c\">Scheduled Test Template</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the<code>id</code> of the <code>scheduled_nb_test_template</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"badc8fe4-5120-4a71-96ad-b6e5a2be6a86","name":"/scheduled_nb_test_templates/:id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/scheduled_nb_test_templates/:id","protocol":"https","host":["[HOSTNAME]"],"path":["scheduled_nb_test_templates",":id"],"variable":[{"key":"id","value":"1","description":"Provide the`id` of the `scheduled_nb_test_template` you wish to retrieve."}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ea32c4de-c7a7-4ff8-b298-4ff943952b95"},{"name":"/scheduled_nb_test_templates","id":"24b30b27-fd67-485a-a33d-f129d286ce9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"scheduled_nb_test_template\": {\n    \"data_size\":null,\n    \"iperf_port\":5001,\n    \"iperf_time\":10,\n    \"iperf_type\":1,\n    \"multicast\":false,\n    \"multicast_ip\":null,\n    \"parallel_streams\":1,\n    \"iperf_version\":2,\n    \"reverse\":false,\n    \"target_is_agent\":18,\n    \"tcp_window\":1,\n    \"tos\":null,\n    \"ttl\":null,\n    \"bandwidth\":null,\n    \"label\":\"test post\",\n    \"cron_schedule\":\"0 12 * * 1-5\",\n    \"target\":\"\",\n    \"test_type_id\":5,\n    \"agent_ids\":[15]\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json","description":"<p>This endpoint gives the ability to create a <code>scheduled_nb_test_template</code>, which provides the ability for <code>agents</code> to run <code>iperf</code>, <code>speedtest</code>, and <code>voip</code> tests on a schedule.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-2ebbf97e-1c26-47a8-a091-54963133e02c\">Scheduled Test Templates</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates.json"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"e1750257-4dfb-4f40-b70f-a23cbce880f9","name":"Create new 1-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 5,\n        \"agent_ids\": [\n            6\n        ],\n        \"bandwidth\": null,\n        \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n        \"iperf_port\": 5001,\n        \"iperf_time\": 10,\n        \"iperf_type\": 1,\n        \"iperf_version\": 2,\n        \"label\": \"Test API POST\",\n        \"multicast\": false,\n        \"multicast_ip\": false,\n        \"parallel_streams\": 1,\n        \"reverse\": false,\n        \"target_is_agent\": 5,\n        \"tcp_window\": 1,\n        \"ttl\": 5,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Test API POST\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 5,\n            \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"IperfTemplate\",\n            \"created_at\": \"2023-10-03T17:51:41.000Z\",\n            \"configuration\": {\n                \"iperf_type\": 1,\n                \"iperf_time\": 10,\n                \"iperf_port\": 5001,\n                \"multicast\": false,\n                \"multicast_ip\": \"0\",\n                \"tcp_window\": 1,\n                \"bandwidth\": null,\n                \"ttl\": 5,\n                \"tos\": null,\n                \"data_size\": null,\n                \"target_is_agent\": 5,\n                \"parallel_streams\": 1,\n                \"iperf_version\": 2,\n                \"reverse\": false\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"68b79e8a-ced4-4903-8500-0687f79d0bfa","name":"Create new M-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scheduled_nb_test_template\": {\n    \"data_size\":null,\n    \"iperf_port\":5001,\n    \"iperf_time\":10,\n    \"iperf_type\":1,\n    \"multicast\":false,\n    \"multicast_ip\":null,\n    \"parallel_streams\":1,\n    \"iperf_version\":2,\n    \"reverse\":false,\n    \"target_is_agent\":18,\n    \"tcp_window\":1,\n    \"tos\":null,\n    \"ttl\":null,\n    \"bandwidth\":null,\n    \"label\":\"test post\",\n    \"cron_schedule\":\"0 12 * * 1-5\",\n    \"target\":\"\",\n    \"test_type_id\":5,\n    \"agent_ids\":[15]\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7aeee39a-07ed-478c-a153-fe9305fa56f6","name":"Create new Network Speed test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 7,\n        \"agent_ids\": [\n            14,\n            7,\n            6,\n            5,\n            4,\n            2,\n            1\n        ],\n        \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n        \"target\": \"\",\n        \"label\": \"Network Speed Test API\",\n        \"secure\": true,\n        \"speedtest_type\": 2,\n        \"server\": \"\",\n        \"mini_server\": \"\",\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Network Speed Test API\",\n            \"target\": \"\",\n            \"test_type_id\": 7,\n            \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"SpeedtestTemplate\",\n            \"created_at\": \"2023-10-03T17:57:09.000Z\",\n            \"configuration\": {\n                \"server\": \"\",\n                \"secure\": true,\n                \"mini_server\": \"\",\n                \"speedtest_type\": 2\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"2\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"4\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"7\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"14\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"4f99b7f6-6665-494f-abf4-51419eec7ad3","name":"Create new VoIP test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 8,\n        \"agent_ids\": [\n            5\n        ],\n        \"cron_schedule\": \"0 9,15,21 * * *\",\n        \"target\": \"\",\n        \"label\": \"VoIP Test API\",\n        \"codec\": \"g711\",\n        \"num_of_concurrent_calls\": 1,\n        \"target_is_agent\": 6,\n        \"voip_port\": 12001,\n        \"voip_time\": 30,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"VoIP Test API\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 8,\n            \"cron_schedule\": \"0 9,15,21 * * *\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"VoipTemplate\",\n            \"created_at\": \"2023-10-03T19:51:32.000Z\",\n            \"configuration\": {\n                \"codec\": \"g711\",\n                \"voip_time\": 30,\n                \"voip_port\": 12001,\n                \"num_of_concurrent_calls\": 1,\n                \"target_is_agent\": 6\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"79a0af2e-1495-47d1-bff1-82af5fc6ba8f","name":"Create new 1-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 5,\n        \"agent_ids\": [\n            6\n        ],\n        \"bandwidth\": null,\n        \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n        \"iperf_port\": 5001,\n        \"iperf_time\": 10,\n        \"iperf_type\": 1,\n        \"iperf_version\": 2,\n        \"label\": \"Test API POST\",\n        \"multicast\": false,\n        \"multicast_ip\": false,\n        \"parallel_streams\": 1,\n        \"reverse\": false,\n        \"target_is_agent\": 5,\n        \"tcp_window\": 1,\n        \"ttl\": 5,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Test API POST\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 5,\n            \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"IperfTemplate\",\n            \"created_at\": \"2023-10-03T17:51:41.000Z\",\n            \"configuration\": {\n                \"iperf_type\": 1,\n                \"iperf_time\": 10,\n                \"iperf_port\": 5001,\n                \"multicast\": false,\n                \"multicast_ip\": \"0\",\n                \"tcp_window\": 1,\n                \"bandwidth\": null,\n                \"ttl\": 5,\n                \"tos\": null,\n                \"data_size\": null,\n                \"target_is_agent\": 5,\n                \"parallel_streams\": 1,\n                \"iperf_version\": 2,\n                \"reverse\": false\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"4f6f749b-1cbf-43bf-8e3a-3a23e43842c8","name":"Create new M-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scheduled_nb_test_template\": {\n    \"data_size\":null,\n    \"iperf_port\":5001,\n    \"iperf_time\":10,\n    \"iperf_type\":1,\n    \"multicast\":false,\n    \"multicast_ip\":null,\n    \"parallel_streams\":1,\n    \"iperf_version\":2,\n    \"reverse\":false,\n    \"target_is_agent\":18,\n    \"tcp_window\":1,\n    \"tos\":null,\n    \"ttl\":null,\n    \"bandwidth\":null,\n    \"label\":\"test post\",\n    \"cron_schedule\":\"0 12 * * 1-5\",\n    \"target\":\"\",\n    \"test_type_id\":5,\n    \"agent_ids\":[15]\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"0d4404e1-15e9-4312-9dad-9e8973df955a","name":"Create new Network Speed test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 7,\n        \"agent_ids\": [\n            14,\n            7,\n            6,\n            5,\n            4,\n            2,\n            1\n        ],\n        \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n        \"target\": \"\",\n        \"label\": \"Network Speed Test API\",\n        \"secure\": true,\n        \"speedtest_type\": 2,\n        \"server\": \"\",\n        \"mini_server\": \"\",\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Network Speed Test API\",\n            \"target\": \"\",\n            \"test_type_id\": 7,\n            \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"SpeedtestTemplate\",\n            \"created_at\": \"2023-10-03T17:57:09.000Z\",\n            \"configuration\": {\n                \"server\": \"\",\n                \"secure\": true,\n                \"mini_server\": \"\",\n                \"speedtest_type\": 2\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"2\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"4\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"7\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"14\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"b57013f0-3e08-4ecf-b620-9b7d3ab420c2","name":"Create new VoIP test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 8,\n        \"agent_ids\": [\n            5\n        ],\n        \"cron_schedule\": \"0 9,15,21 * * *\",\n        \"target\": \"\",\n        \"label\": \"VoIP Test API\",\n        \"codec\": \"g711\",\n        \"num_of_concurrent_calls\": 1,\n        \"target_is_agent\": 6,\n        \"voip_port\": 12001,\n        \"voip_time\": 30,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"VoIP Test API\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 8,\n            \"cron_schedule\": \"0 9,15,21 * * *\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"VoipTemplate\",\n            \"created_at\": \"2023-10-03T19:51:32.000Z\",\n            \"configuration\": {\n                \"codec\": \"g711\",\n                \"voip_time\": 30,\n                \"voip_port\": 12001,\n                \"num_of_concurrent_calls\": 1,\n                \"target_is_agent\": 6\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"24b30b27-fd67-485a-a33d-f129d286ce9f"},{"name":"/scheduled_nb_test_templates (jsonapi)","id":"0e2151be-3682-4d4d-bc1c-1cb230d1b228","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": \"19\",\n    \"type\": \"scheduled_test_template\",\n    \"attributes\": {\n      \"secure\": true,\n      \"speedtest_type\": 2,\n      \"label\": \"Test API\",\n      \"cron_schedule\": \"10 12 * * *\"\n    },\n    \"relationships\": {\n      \"test_type\": {\n        \"data\": {\n          \"type\": \"test_type\",\n          \"id\": \"7\"\n        }\n      },\n      \"agents\": {\n        \"data\": [\n          {\n            \"type\": \"agent\",\n            \"id\": \"2\"\n          }\n        ]\n      },\n      \"monitoring_condition\": {\n        \"data\": {\n          \"type\": \"monitoring_condition\",\n          \"id\": \"1\"\n        }\n      },\n      \"alert_detectors\": {\n        \"data\": [\n            {\n                \"type\": \"alert_detector\",\n                \"id\": \"1\"\n            }\n        ]\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates","description":"<p>This endpoint gives the ability to create a <code>scheduled_nb_test_template</code>, which provides the ability for <code>agents</code> to run <code>iperf</code>, <code>speedtest</code>, and <code>voip</code> tests on a schedule.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-2ebbf97e-1c26-47a8-a091-54963133e02c\">Scheduled Test Templates</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"5ccb884d-4ca2-4c23-904a-ced18619d9e1","name":"Create new 1-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 5,\n        \"agent_ids\": [\n            6\n        ],\n        \"bandwidth\": null,\n        \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n        \"iperf_port\": 5001,\n        \"iperf_time\": 10,\n        \"iperf_type\": 1,\n        \"iperf_version\": 2,\n        \"label\": \"Test API POST\",\n        \"multicast\": false,\n        \"multicast_ip\": false,\n        \"parallel_streams\": 1,\n        \"reverse\": false,\n        \"target_is_agent\": 5,\n        \"tcp_window\": 1,\n        \"ttl\": 5,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Test API POST\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 5,\n            \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"IperfTemplate\",\n            \"created_at\": \"2023-10-03T17:51:41.000Z\",\n            \"configuration\": {\n                \"iperf_type\": 1,\n                \"iperf_time\": 10,\n                \"iperf_port\": 5001,\n                \"multicast\": false,\n                \"multicast_ip\": \"0\",\n                \"tcp_window\": 1,\n                \"bandwidth\": null,\n                \"ttl\": 5,\n                \"tos\": null,\n                \"data_size\": null,\n                \"target_is_agent\": 5,\n                \"parallel_streams\": 1,\n                \"iperf_version\": 2,\n                \"reverse\": false\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"19946e6e-a00d-423d-b303-711d2b718cdd","name":"Create new M-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scheduled_nb_test_template\": {\n    \"data_size\":null,\n    \"iperf_port\":5001,\n    \"iperf_time\":10,\n    \"iperf_type\":1,\n    \"multicast\":false,\n    \"multicast_ip\":null,\n    \"parallel_streams\":1,\n    \"iperf_version\":2,\n    \"reverse\":false,\n    \"target_is_agent\":18,\n    \"tcp_window\":1,\n    \"tos\":null,\n    \"ttl\":null,\n    \"bandwidth\":null,\n    \"label\":\"test post\",\n    \"cron_schedule\":\"0 12 * * 1-5\",\n    \"target\":\"\",\n    \"test_type_id\":5,\n    \"agent_ids\":[15]\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b41e06be-da46-44a9-a106-b30b07e25098","name":"Create new Network Speed test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 7,\n        \"agent_ids\": [\n            14,\n            7,\n            6,\n            5,\n            4,\n            2,\n            1\n        ],\n        \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n        \"target\": \"\",\n        \"label\": \"Network Speed Test API\",\n        \"secure\": true,\n        \"speedtest_type\": 2,\n        \"server\": \"\",\n        \"mini_server\": \"\",\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Network Speed Test API\",\n            \"target\": \"\",\n            \"test_type_id\": 7,\n            \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"SpeedtestTemplate\",\n            \"created_at\": \"2023-10-03T17:57:09.000Z\",\n            \"configuration\": {\n                \"server\": \"\",\n                \"secure\": true,\n                \"mini_server\": \"\",\n                \"speedtest_type\": 2\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"2\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"4\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"7\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"14\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"a61617cc-a888-45e8-b1d9-7e2ccd6d19d9","name":"Create new VoIP test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 8,\n        \"agent_ids\": [\n            5\n        ],\n        \"cron_schedule\": \"0 9,15,21 * * *\",\n        \"target\": \"\",\n        \"label\": \"VoIP Test API\",\n        \"codec\": \"g711\",\n        \"num_of_concurrent_calls\": 1,\n        \"target_is_agent\": 6,\n        \"voip_port\": 12001,\n        \"voip_time\": 30,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"VoIP Test API\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 8,\n            \"cron_schedule\": \"0 9,15,21 * * *\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"VoipTemplate\",\n            \"created_at\": \"2023-10-03T19:51:32.000Z\",\n            \"configuration\": {\n                \"codec\": \"g711\",\n                \"voip_time\": 30,\n                \"voip_port\": 12001,\n                \"num_of_concurrent_calls\": 1,\n                \"target_is_agent\": 6\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"82c1115d-081b-4113-808e-c4ac08fb3544","name":"Create new 1-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 5,\n        \"agent_ids\": [\n            6\n        ],\n        \"bandwidth\": null,\n        \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n        \"iperf_port\": 5001,\n        \"iperf_time\": 10,\n        \"iperf_type\": 1,\n        \"iperf_version\": 2,\n        \"label\": \"Test API POST\",\n        \"multicast\": false,\n        \"multicast_ip\": false,\n        \"parallel_streams\": 1,\n        \"reverse\": false,\n        \"target_is_agent\": 5,\n        \"tcp_window\": 1,\n        \"ttl\": 5,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Test API POST\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 5,\n            \"cron_schedule\": \"0 9,15,21 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"IperfTemplate\",\n            \"created_at\": \"2023-10-03T17:51:41.000Z\",\n            \"configuration\": {\n                \"iperf_type\": 1,\n                \"iperf_time\": 10,\n                \"iperf_port\": 5001,\n                \"multicast\": false,\n                \"multicast_ip\": \"0\",\n                \"tcp_window\": 1,\n                \"bandwidth\": null,\n                \"ttl\": 5,\n                \"tos\": null,\n                \"data_size\": null,\n                \"target_is_agent\": 5,\n                \"parallel_streams\": 1,\n                \"iperf_version\": 2,\n                \"reverse\": false\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"39bca3b9-001b-4070-89d1-898b38f3dc44","name":"Create new M-to-1 Iperf test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scheduled_nb_test_template\": {\n    \"data_size\":null,\n    \"iperf_port\":5001,\n    \"iperf_time\":10,\n    \"iperf_type\":1,\n    \"multicast\":false,\n    \"multicast_ip\":null,\n    \"parallel_streams\":1,\n    \"iperf_version\":2,\n    \"reverse\":false,\n    \"target_is_agent\":18,\n    \"tcp_window\":1,\n    \"tos\":null,\n    \"ttl\":null,\n    \"bandwidth\":null,\n    \"label\":\"test post\",\n    \"cron_schedule\":\"0 12 * * 1-5\",\n    \"target\":\"\",\n    \"test_type_id\":5,\n    \"agent_ids\":[15]\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b13e5ae7-5ed2-4eba-8a6f-66f6d87eb41c","name":"Create new Network Speed test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 7,\n        \"agent_ids\": [\n            14,\n            7,\n            6,\n            5,\n            4,\n            2,\n            1\n        ],\n        \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n        \"target\": \"\",\n        \"label\": \"Network Speed Test API\",\n        \"secure\": true,\n        \"speedtest_type\": 2,\n        \"server\": \"\",\n        \"mini_server\": \"\",\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"Network Speed Test API\",\n            \"target\": \"\",\n            \"test_type_id\": 7,\n            \"cron_schedule\": \"0 8,14,20 * * 1,2,3,4,5\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"SpeedtestTemplate\",\n            \"created_at\": \"2023-10-03T17:57:09.000Z\",\n            \"configuration\": {\n                \"server\": \"\",\n                \"secure\": true,\n                \"mini_server\": \"\",\n                \"speedtest_type\": 2\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"1\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"2\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"4\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"6\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"7\",\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": \"14\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"},{"id":"fdcf17f3-130b-456b-8567-46b400028a6d","name":"Create new VoIP test","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"scheduled_nb_test_template\": {\n        \"test_type_id\": 8,\n        \"agent_ids\": [\n            5\n        ],\n        \"cron_schedule\": \"0 9,15,21 * * *\",\n        \"target\": \"\",\n        \"label\": \"VoIP Test API\",\n        \"codec\": \"g711\",\n        \"num_of_concurrent_calls\": 1,\n        \"target_is_agent\": 6,\n        \"voip_port\": 12001,\n        \"voip_time\": 30,\n        \"warning_conditions\": {}\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates.json"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"scheduled_nb_test_template\",\n        \"attributes\": {\n            \"label\": \"VoIP Test API\",\n            \"target\": \"0.0.0.0\",\n            \"test_type_id\": 8,\n            \"cron_schedule\": \"0 9,15,21 * * *\",\n            \"pause_other_tests\": true,\n            \"scheduled_test_templatable_type\": \"VoipTemplate\",\n            \"created_at\": \"2023-10-03T19:51:32.000Z\",\n            \"configuration\": {\n                \"codec\": \"g711\",\n                \"voip_time\": 30,\n                \"voip_port\": 12001,\n                \"num_of_concurrent_calls\": 1,\n                \"target_is_agent\": 6\n            },\n            \"warning_conditions\": {},\n            \"last_result\": null\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": \"5\",\n                        \"type\": \"agent\"\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"0e2151be-3682-4d4d-bc1c-1cb230d1b228"},{"name":"/scheduled_nb_test_templates/:id","id":"d82ea759-2409-451a-817a-8c885cb7d86d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"data_size\":null,\n\t\"iperf_port\":5001,\n\t\"iperf_time\":10,\n\t\"iperf_type\":1,\n\t\"multicast\":false,\n\t\"multicast_ip\":null,\n\t\"parallel_streams\":1,\n\t\"iperf_version\":2,\n\t\"reverse\":false,\n\t\"target_is_agent\":18,\n\t\"tcp_window\":1,\n\t\"tos\":null,\n\t\"ttl\":null,\n\t\"bandwidth\":null,\n\t\"label\":\"test put changed\",\n\t\"cron_schedule\":\"0 13 * * 1-5\",\n\t\"target\":\"172.17.0.4\",\n\t\"test_type_id\":5,\n\t\"agent_ids\":[15]\n}\n","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates/:id","description":"<p>This endpoint gives the ability to update a specified <code>scheduled_nb_test_template</code>.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-2ebbf97e-1c26-47a8-a091-54963133e02c\">Scheduled Test Templates</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>scheduled_nb_test_template</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"d82ea759-2409-451a-817a-8c885cb7d86d"},{"name":"/scheduled_nb_test_templates/:id (jsonapi)","id":"17dd900e-6fa4-4da8-9715-2e7e540cd720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": \"4\",\n    \"type\": \"scheduled_test_template\",\n    \"attributes\": {\n      \"label\": \"Test API\"\n    },\n    \"relationships\": {\n      \"agents\": {\n        \"data\": [\n            {\n                \"id\": \"8\",\n                \"type\": \"agent\",\n                \"method\": \"remove\"\n            }\n        ]\n      },\n      \"alert_detectors\": {\n        \"data\": [\n          {\n            \"type\": \"alert_detector\",\n            \"id\": \"12\"\n          }\n        ]\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/scheduled_nb_test_templates/:id","description":"<p>This endpoint gives the ability to update a specified <code>scheduled_nb_test_template</code>.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-2ebbf97e-1c26-47a8-a091-54963133e02c\">Scheduled Test Templates</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"id":"86e476f6-42c8-4e68-825e-15d66c0c4b69","description":{"content":"<p>Provide the <code>id</code> of the <code>scheduled_nb_test_template</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"5","key":"id"}]}},"response":[],"_postman_id":"17dd900e-6fa4-4da8-9715-2e7e540cd720"}],"id":"b48585af-ddff-422e-9b52-af1b75399631","event":[{"listen":"prerequest","script":{"id":"ebc2fdd3-7e68-4f72-b4b6-421242b7b7f0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fe3040bf-7a7f-468c-9533-f836ee596916","type":"text/javascript","exec":[""]}}],"_postman_id":"b48585af-ddff-422e-9b52-af1b75399631","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Multiagent Test Runs","item":[{"name":"/multiagent_nb_test_runs","id":"afa2c2dc-a14e-4f64-93a5-12854b78f83d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://[HOSTNAME]/multiagent_nb_test_runs?filter[multiagent_nb_test_runs]=450374&include=results","description":"<p>This endpoint gives the ability to retrieve <code>multiagent_test_runs</code> information. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-1ab5a6ce-274a-4675-9cad-9d9407b41b37\">Multiagent Test Run</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["multiagent_nb_test_runs"],"host":["[HOSTNAME]"],"query":[{"description":{"content":"<p>Filter <code>multiagent_nb_test_runs</code> based on the <code>id</code> of the runs. You may provide a comma separated list of ids.</p>\n","type":"text/plain"},"key":"filter[multiagent_nb_test_runs]","value":"450374"},{"disabled":true,"description":{"content":"<p>Filter <code>runs</code> based on <code>ts</code> (timestamp).  This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters.<br />For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds).<br />For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":">="},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1690211620096"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":"1689817196491"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":"1689817196491"},{"description":{"content":"<p>Use the <code>include</code> parameter in order to include all the associated <code>results</code> with each <code>run</code> returned.</p>\n","type":"text/plain"},"key":"include","value":"results"}],"variable":[]}},"response":[{"id":"e0c62fc0-2a97-4705-8b51-c2143a54a714","name":"Get the results of a run by id","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://[HOSTNAME]/multiagent_nb_test_runs?filter[multiagent_nb_test_runs]=1640&include=results","protocol":"https","host":["[HOSTNAME]"],"path":["multiagent_nb_test_runs"],"query":[{"key":"filter[multiagent_nb_test_runs]","value":"1640","description":"Filter `multiagent_nb_test_runs` based on the `id` of the runs. You may provide a comma separated list of ids."},{"key":"filter[ts][operator]","value":">=","description":"Filter `runs` based on `ts` (timestamp).  This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters.  \nFor the `<=>`(between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds).  \nFor the `<=,<,>,>=` operators use the `filter[ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[ts][value]","value":"1690211620096","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[ts][value1]","value":"1689817196491","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value1]","value":"1689817196491","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"include","value":"results","description":"Use the `include` parameter in order to include all the associated `results` with each `run` returned."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1640\",\n            \"type\": \"multiagent_nb_test_run\",\n            \"attributes\": {\n                \"ts\": 1696306581840,\n                \"state\": \"completed\",\n                \"configuration\": {\n                    \"target\": \"\",\n                    \"schedule_type\": \"ad_hoc\",\n                    \"speedtest_type\": 2,\n                    \"agent_ids\": [\n                        279,\n                        280\n                    ],\n                    \"test_type_id\": 7\n                }\n            },\n            \"relationships\": {\n                \"scheduled_nb_test_template\": {\n                    \"data\": null\n                },\n                \"scheduled_nb_test_results\": {\n                    \"data\": [\n                        {\n                            \"id\": \"1652218\",\n                            \"type\": \"scheduled_nb_test_result\"\n                        },\n                        {\n                            \"id\": \"1652219\",\n                            \"type\": \"scheduled_nb_test_result\"\n                        }\n                    ]\n                },\n                \"test_type\": {\n                    \"data\": null\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"1652218\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 6,\n                \"ts\": 1696306581840,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 66.7\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 30.9\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 48.5\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"279\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": null\n                },\n                \"multiagent_nb_test_run\": {\n                    \"data\": {\n                        \"id\": \"1640\",\n                        \"type\": \"multiagent_nb_test_run\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1652219\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 6,\n                \"ts\": 1696306581840,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 59.1\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 33.8\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 77.4\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": null\n                },\n                \"multiagent_nb_test_run\": {\n                    \"data\": {\n                        \"id\": \"1640\",\n                        \"type\": \"multiagent_nb_test_run\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"filters\": {\n            \"multiagent_nb_test_runs\": \"1640\"\n        },\n        \"include\": \"results\",\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"total\": 1\n        }\n    }\n}"}],"_postman_id":"afa2c2dc-a14e-4f64-93a5-12854b78f83d"},{"name":"/multiagent_nb_test_runs/ad_hoc","id":"6f62e8f6-ae2f-4b02-8b9a-1f4ef1ae6237","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"multiagent_nb_test_run\",\n        \"attributes\": {\n            \"mini_server\": null,\n            \"secure\": true,\n            \"server\": null,\n            \"speedtest_type\": 1,\n            \"target\": \"\"\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 3,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"test_type\": {\n                \"data\": {\n                    \"id\": 7,\n                    \"type\": \"test_type\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/multiagent_nb_test_runs/ad_hoc","description":"<p>This endpoint allows you to perform an ad-hoc test run on multiple <code>Agents</code>. Currently this is limited to Network Speed Tests and VoIP Tests.</p>\n<p>See the <a href=\"#folder-1ab5a6ce-274a-4675-9cad-9d9407b41b37\">Multiagent Test Run</a> data structure reference for additional information. See <a href=\"#670b7e0c-98e4-44b6-9875-96233d01330b\">POST/PUT using JSONAPI</a> reference topic for information on sending JSONAPI payloads.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["multiagent_nb_test_runs","ad_hoc"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[{"id":"9489e547-afb5-4ddf-9387-ccd59986b2c1","name":"Request a Network Speedtest on an agent","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer [API_KEY]"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"multiagent_nb_test_run\",\n        \"attributes\": {\n            \"speedtest_type\": 2,\n            \"target\": \"\"\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 279,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"test_type\": {\n                \"data\": {\n                    \"id\": 7,\n                    \"type\": \"test_type\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/multiagent_nb_test_runs/ad_hoc"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1640\",\n        \"type\": \"multiagent_nb_test_run\",\n        \"attributes\": {\n            \"ts\": 1696306581840,\n            \"state\": \"initialization\",\n            \"configuration\": {\n                \"target\": \"\",\n                \"schedule_type\": \"ad_hoc\",\n                \"speedtest_type\": 2,\n                \"agent_ids\": [\n                    279,\n                    280\n                ],\n                \"test_type_id\": 7\n            }\n        },\n        \"relationships\": {\n            \"scheduled_nb_test_template\": {\n                \"data\": null\n            },\n            \"scheduled_nb_test_results\": {\n                \"data\": []\n            },\n            \"test_type\": {\n                \"data\": null\n            }\n        }\n    }\n}"},{"id":"80db86bb-ff5d-4a97-908a-42a01c1dfb10","name":"Run a Custom Command test","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"multiagent_nb_test_run\",\n        \"attributes\": {\n            \"custom_command\": \"#!/usr/bin/env bash\\necho \\\"value=123\\\"\",\n            \"output_schema\": [\n                {\n                    \"metric\": \"value\",\n                    \"unit\": \"int\"\n                }\n            ]\n        },\n        \"relationships\": {\n            \"agents\": {\n                \"data\": [\n                    {\n                        \"id\": 3646,\n                        \"type\": \"agent\"\n                    },\n                    {\n                        \"id\": 3588,\n                        \"type\": \"agent\"\n                    }\n                ]\n            },\n            \"test_type\": {\n                \"data\": {\n                    \"id\": 11,\n                    \"type\": \"test_type\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://[HOSTNAME]/multiagent_nb_test_runs/ad_hoc"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"450374\",\n        \"type\": \"multiagent_nb_test_run\",\n        \"attributes\": {\n            \"ts\": 1773652644033,\n            \"state\": \"initialization\",\n            \"configuration\": {\n                \"schedule_type\": \"ad_hoc\",\n                \"custom_command\": \"#!/usr/bin/env bash\\necho \\\"value=123\\\"\",\n                \"output_schema\": [\n                    {\n                        \"metric\": \"value\",\n                        \"unit\": \"int\"\n                    }\n                ],\n                \"agent_ids\": [\n                    3646,\n                    3588\n                ],\n                \"test_type_id\": 11\n            }\n        },\n        \"relationships\": {\n            \"scheduled_nb_test_template\": {\n                \"data\": null\n            },\n            \"scheduled_nb_test_results\": {\n                \"data\": []\n            },\n            \"test_type\": {\n                \"data\": null\n            }\n        }\n    }\n}"}],"_postman_id":"6f62e8f6-ae2f-4b02-8b9a-1f4ef1ae6237"}],"id":"859139ed-80e0-4702-853b-84aa238386bd","_postman_id":"859139ed-80e0-4702-853b-84aa238386bd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Scheduled Test Results","item":[{"name":"/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results","id":"06fb70e8-f831-423d-8f68-dc4af597d1ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results?order[attributes]=ts&order[direction]=desc&page[offset]=1&page[limit]=5","description":"<p>This endpoint gives the ability to retrieve results for a specified <code>scheduled_nb_test_template</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"https://netbeez.postman.co/workspace/8413da12-dba5-4eb2-9f02-3b0fad516919/folder/4425180-1838c396-181b-42f9-b3ca-6219f7529c94?ctx=documentation\">Scheduled Test Results </a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates",":scheduled_nb_test_template_id","results"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>ts</code> (timestamp).  This filter allows you to provide a single operator and value(s) to filter <code>ts</code> and <code>results</code> that fall within the parameters.  </p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[ts][value1]</code> and <code>filter[ts][value2]</code> providing a unix timestamp for each (in milliseconds).  </p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[ts][value]</code> providing a unix timestamp.</p>\n","type":"text/plain"},"key":"filter[ts][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[ts][value]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value1]","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[ts][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[ts][value2]","value":"1596045708881"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>severity</code> (error: <code>1</code>, warning: <code>4</code>, success: <code>6</code>).  This filter allows you to provide a single operator and value(s) to filter <code>severity</code> and <code>results</code> that fall within the parameters.  </p>\n<p>For the <code>&lt;=&gt;</code>(between) operator use the <code>filter[severity][value1]</code> and <code>filter[severity][value2]</code> providing the desired severity values between 1 and 6.  </p>\n<p>For the <code>&lt;=,&lt;,&gt;,&gt;=</code> operators use the <code>filter[severity][value]</code> providing a value between 1 and 6.</p>\n","type":"text/plain"},"key":"filter[severity][operator]","value":"<=>"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is one of the following: <code>&lt;=,&lt;,&gt;,&gt;=</code></p>\n","type":"text/plain"},"key":"filter[severity][value]","value":"1"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value1]","value":"1"},{"disabled":true,"description":{"content":"<p>Use if <code>filter[severity][operator]</code> is provided and is <code>&lt;=&gt;</code>.</p>\n","type":"text/plain"},"key":"filter[severity][value2]","value":"4"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>ssid</code>.  You can filter on a single <code>ssid</code> or multiple <code>ssids</code> by providing the <code>ssids</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[ssid]","value":"entrerprise-guest"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on the <code>category</code> of the source agent. <code>category</code> can be one of the following values:</p>\n<ul>\n<li><code>network_agent</code></li>\n<li><code>remote_worker_agent</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[categories]","value":"network_agent"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on the <code>agent_classes</code> of the source agent.  <code>agent_classes</code> include following categories: </p>\n<ul>\n<li><code>container</code></li>\n<li><code>faste</code></li>\n<li><code>wireless</code></li>\n<li><code>cumulus</code></li>\n<li><code>external</code></li>\n<li><code>gige</code></li>\n<li><code>software</code></li>\n<li><code>virtual</code></li>\n<li><code>mac</code></li>\n<li><code>windows</code></li>\n<li><code>igel</code>\nYou can filter on a single <code>agent_class</code> or multiple <code>agent_classes</code> by providing the <code>agent classes</code> as a comma separated list.</li>\n</ul>\n","type":"text/plain"},"key":"filter[agent_classes]","value":"gige,wireless"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>agents</code>.  You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agent</code> ids as a comma separated list.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"1,2,3"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on <code>last_result</code> for each <code>agent</code> specified using <code>filter[agents]</code> or for all <code>agents</code> associated to the <code>scheduled_test</code> if<code>filter[agents]</code> is not provided.     </p>\n","type":"text/plain"},"key":"filter[last_result]","value":"true"},{"disabled":true,"description":{"content":"<p>Filter <code>results</code> based on whether they have an alert attached to them or not. Set the parameter to <code>true</code> to get the results with an alert attached to them, and <code>false</code> to get the ones without any alerts on them.</p>\n","type":"text/plain"},"key":"filter[in_alert]","value":"true"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>ts</code></li>\n<li><code>severity</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"ts"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"5"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>scheduled_nb_test_template</code> you wish to retrieve results for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"scheduled_nb_test_template_id"}]}},"response":[{"id":"58a7aab5-c758-4fa7-bef6-77845bdffb24","name":"Last result for each agent","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://[HOSTNAME]/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results?filter[last_result]=true","protocol":"https","host":["[HOSTNAME]"],"path":["scheduled_nb_test_templates",":scheduled_nb_test_template_id","results"],"query":[{"key":"filter[ts][operator]","value":"<=>","description":"Filter `results` based on `ts` (timestamp).  This filter allows you to provide a single operator and value(s) to filter `ts` and `results` that fall within the parameters.  \n\nFor the `<=>`(between) operator use the `filter[ts][value1]` and `filter[ts][value2]` providing a unix timestamp for each (in milliseconds).  \n\nFor the `<=,<,>,>=` operators use the `filter[ts][value]` providing a unix timestamp.","disabled":true},{"key":"filter[ts][value]","value":"1596045708881","description":"Use if `filter[ts][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[ts][value1]","value":"1596045659171","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ts][value2]","value":"1596045708881","description":"Use if `filter[ts][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[severity][operator]","value":"<=>","description":"Filter `results` based on `severity` (error: `1`, warning: `4`, success: `6`).  This filter allows you to provide a single operator and value(s) to filter `severity` and `results` that fall within the parameters.  \n\nFor the `<=>`(between) operator use the `filter[severity][value1]` and `filter[severity][value2]` providing the desired severity values between 1 and 6.  \n\nFor the `<=,<,>,>=` operators use the `filter[severity][value]` providing a value between 1 and 6.","disabled":true},{"key":"filter[severity][value]","value":"1","description":"Use if `filter[severity][operator]` is provided and is one of the following: `<=,<,>,>=`","disabled":true},{"key":"filter[severity][value1]","value":"1","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[severity][value2]","value":"4","description":"Use if `filter[severity][operator]` is provided and is `<=>`.","disabled":true},{"key":"filter[ssid]","value":"entrerprise-guest","description":"Filter `results` based on `ssid`.  You can filter on a single `ssid` or multiple `ssids` by providing the `ssids` ids as a comma separated list.","disabled":true},{"key":"filter[agents]","value":"1,2,3","description":"Filter `results` based on `agents`.  You can filter on a single `agent` or multiple `agents` by providing the `agent` ids as a comma separated list.","disabled":true},{"key":"filter[last_result]","value":"true","description":"Filter `results` based on `last_result` for each `agent` specified using `filter[agents]` or for all `agents` associated to the `scheduled_test` if`filter[agents]` is not provided.     "},{"key":"order[attributes]","value":"ts","description":"Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with `order[direction]`.  You may only order attributes in the same direction.  Available attributes for ordering are:\n- `ts`\n- `severity`","disabled":true},{"key":"order[direction]","value":"desc","description":"Use if `order[attributes]` is provided and provide either `asc` or `desc` direction.","disabled":true},{"key":"page[offset]","value":"1","description":"Use `page[offset]` to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.","disabled":true},{"key":"page[limit]","value":"5","description":"Use `page[limit]` to specify how many results to return on each page.  The default limit is 25.","disabled":true}],"variable":[{"key":"scheduled_nb_test_template_id","value":"1","description":"Provide the `id` of the `scheduled_nb_test_template` you wish to retrieve results for."}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1634764\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 4,\n                \"ts\": 1690257600000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 20.5\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 30.988\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 5.19\n                    }\n                ],\n                \"violated_condition\": {\n                    \"or\": [\n                        {\n                            \"<\": [\n                                {\n                                    \"var\": \"down\"\n                                },\n                                10\n                            ]\n                        },\n                        {\n                            \"<\": [\n                                {\n                                    \"var\": \"up\"\n                                },\n                                10\n                            ]\n                        },\n                        {\n                            \">\": [\n                                {\n                                    \"var\": \"latency\"\n                                },\n                                80\n                            ]\n                        }\n                    ]\n                }\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"226\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1634842\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 4,\n                \"ts\": 1690282800000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 4.22\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 31.615\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 36.59\n                    }\n                ],\n                \"violated_condition\": {\n                    \"or\": [\n                        {\n                            \"<\": [\n                                {\n                                    \"var\": \"down\"\n                                },\n                                10\n                            ]\n                        },\n                        {\n                            \"<\": [\n                                {\n                                    \"var\": \"up\"\n                                },\n                                10\n                            ]\n                        },\n                        {\n                            \">\": [\n                                {\n                                    \"var\": \"latency\"\n                                },\n                                80\n                            ]\n                        }\n                    ]\n                }\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"249\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1634837\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 6,\n                \"ts\": 1690282800000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 91.02\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 17.936\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 89.71\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"280\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1634846\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": \"Speedtest returned zeroes\",\n                \"severity\": 1,\n                \"ts\": 1690282800000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 0\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 0\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 0\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"297\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1634838\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 6,\n                \"ts\": 1690282800000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 14.7\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 45.041\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 13.42\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"305\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1634841\",\n            \"type\": \"scheduled_nb_test_result\",\n            \"attributes\": {\n                \"error_message\": null,\n                \"severity\": 6,\n                \"ts\": 1690282800000,\n                \"ssid\": null,\n                \"result_values\": [\n                    {\n                        \"key\": \"down\",\n                        \"value\": 56.9\n                    },\n                    {\n                        \"key\": \"latency\",\n                        \"value\": 34.487\n                    },\n                    {\n                        \"key\": \"up\",\n                        \"value\": 56.68\n                    }\n                ],\n                \"violated_condition\": null\n            },\n            \"relationships\": {\n                \"agent\": {\n                    \"data\": {\n                        \"id\": \"427\",\n                        \"type\": \"agent\"\n                    }\n                },\n                \"scheduled_nb_test_template\": {\n                    \"data\": {\n                        \"id\": \"1\",\n                        \"type\": \"scheduled_nb_test_template\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"page\": {\n            \"offset\": 1,\n            \"limit\": 25,\n            \"total\": 1\n        }\n    }\n}"}],"_postman_id":"06fb70e8-f831-423d-8f68-dc4af597d1ca"}],"id":"6284ccf0-f48b-437c-92c9-10a3374184ac","event":[{"listen":"prerequest","script":{"id":"9e1837ae-9f89-451d-9df5-4d5ee98cbd0a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1588e004-9958-4910-a575-06f2a1e6962e","type":"text/javascript","exec":[""]}}],"_postman_id":"6284ccf0-f48b-437c-92c9-10a3374184ac","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Scheduled Test Result Statistics","item":[{"name":"/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results/statistics","id":"863b8a22-f679-4d8b-8e02-11314083c4d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results/statistics?order[attribute]=ts&order[direction]=desc&page[offset]=1&page[limit]=5","description":"<p>This endpoint gives the ability to retrieve statistics for a specified <code>scheduled_nb_test_template</code>. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder/4425180-1c1d99bf-fced-4990-b81d-63dc4512f8bb\">Scheduled Test Run Statistic</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_test_templates",":scheduled_nb_test_template_id","results","statistics"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>A unix timestamp that specifies the start time of the averages timeline.</p>\n","type":"text/plain"},"key":"from_ts","value":"1596045659171"},{"disabled":true,"description":{"content":"<p>A unix timestamp that specifies the end time of the averages timeline.</p>\n","type":"text/plain"},"key":"to_ts","value":"1596045708881"},{"description":{"content":"<p>Order payload statistics results based on provided attribute.  You may only provide a single attribute.  Use in conjunction with <code>order[direction]</code>.  Available attributes for ordering are (assuming the test type of the scheduled test template you are querying for includes them):</p>\n<ul>\n<li><code>ts</code></li>\n<li><code>error_count</code></li>\n<li><code>warning_count</code></li>\n<li><code>up</code></li>\n<li><code>down</code></li>\n<li><code>latency</code></li>\n<li><code>jitter</code></li>\n<li><code>bw</code></li>\n<li><code>packets_sent</code></li>\n<li><code>packets_lost</code></li>\n<li><code>packet_loss</code></li>\n<li><code>retries</code></li>\n<li><code>mos</code></li>\n<li><code>bps</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attribute]","value":"ts"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"5"}],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>scheduled_nb_test_template</code> you wish to retrieve statistics for.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"scheduled_nb_test_template_id"}]}},"response":[],"_postman_id":"863b8a22-f679-4d8b-8e02-11314083c4d2"}],"id":"01a9804d-356a-4687-b64e-6579f78fab36","_postman_id":"01a9804d-356a-4687-b64e-6579f78fab36","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Transition State","item":[{"name":"/nb_tests/:nb_test_id/transition_states/:state","id":"cd02b34e-8020-4fb4-855e-5eee79f82079","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://[HOSTNAME]/nb_tests/:nb_test_id/transition_states/:state","description":"<p>This endpoint gives the ability pause or resume a specified <code>nb_test</code>.</p>\n<p>See the <a href=\"#folder/4425180-d38af746-d246-466c-afa7-859b6766b636\">Transition State</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests",":nb_test_id","transition_states",":state"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>id</code> of the <code>nb_test</code> you wish to transition.</p>\n","type":"text/plain"},"type":"any","value":"3","key":"nb_test_id"},{"description":{"content":"<p>Provide the <code>state</code> you wish to transition the <code>nb_test</code>  to. Use one of the following states: </p>\n<ul>\n<li><code>pause_requested</code>: Request the test to be paused.</li>\n<li><code>resume_requested</code>: Request the test to resume.</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"pause_requested","key":"state"}]}},"response":[],"_postman_id":"cd02b34e-8020-4fb4-855e-5eee79f82079"},{"name":"/scheduled_nb_tests/:scheduled_nb_test_id/:state","id":"751fe71d-f7c6-4740-b1b9-f7fb08d81237","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://[HOSTNAME]/scheduled_nb_tests/:scheduled_nb_test_id/transition_states/:state","description":"<p>This endpoint gives the ability pause or resume a specified <code>nb_test</code>.</p>\n<p>See the <a href=\"#folder/4425180-d38af746-d246-466c-afa7-859b6766b636\">Transition State</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["scheduled_nb_tests",":scheduled_nb_test_id","transition_states",":state"],"host":["[HOSTNAME]"],"query":[],"variable":[{"id":"e209a83c-e7d6-4d8c-b8d4-15476eb6908f","type":"any","value":"1","key":"scheduled_nb_test_id"},{"id":"1324ee17-1cf5-4d3d-be84-912624d6236d","description":{"content":"<p>Provide the <code>state</code> you wish to transition the <code>nb_test</code>  to. Use one of the following states: </p>\n<ul>\n<li><code>pause_requested</code>: Request the test to be paused.</li>\n<li><code>resume_requested</code>: Request the test to resume.</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"pause_requested","key":"state"}]}},"response":[],"_postman_id":"751fe71d-f7c6-4740-b1b9-f7fb08d81237"},{"name":"/nb_tests/transition_states/:state","id":"9ceff141-3216-4841-91c2-72dc879d1415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"agent_ids\": [1,2,3]\n}"},"url":"https://[HOSTNAME]/nb_tests/transition_states/:state","description":"<p>This endpoint gives the ability pause or resume a tests for specified <code>agents</code>, <code>targets</code>, or <code>wifi_profiles</code>.</p>\n<p>See the <a href=\"#folder/4425180-d38af746-d246-466c-afa7-859b6766b636\">Transition State</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["nb_tests","transition_states",":state"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the <code>state</code> you wish to transition <code>nb_tests</code>  to. Use one of the following states: </p>\n<ul>\n<li><code>pause_requested</code>: Request the test to be paused.</li>\n<li><code>resume_requested</code>: Request the test to resume.</li>\n</ul>\n","type":"text/plain"},"type":"any","value":"resume_requested","key":"state"}]}},"response":[],"_postman_id":"9ceff141-3216-4841-91c2-72dc879d1415"}],"id":"e417a7a8-c9db-42e1-8f56-8202fbdc1a16","_postman_id":"e417a7a8-c9db-42e1-8f56-8202fbdc1a16","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"be1ccc49-bbac-4f42-b1e6-a856b9de69c2","event":[{"listen":"prerequest","script":{"id":"36b6b7be-9d20-495b-8484-e6a13d0d457b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0ecfa446-12bd-42a4-b13e-d7432cde0744","type":"text/javascript","exec":[""]}}],"_postman_id":"be1ccc49-bbac-4f42-b1e6-a856b9de69c2","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"WiFi APIs","item":[{"name":"WiFi Profiles","item":[{"name":"/wifi_profiles","id":"7301de03-6c06-4c3f-a0c7-74d30fef750b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"https://[HOSTNAME]/wifi_profiles?page[offset]=1&page[limit]=25&order[attributes]=ssid&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>wifi_profile</code> information from the NetBeez server. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-76dcaeda-450a-4fcf-ab81-adfb0b8720a520a5\">WiFi Profile</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_profiles"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>wifi_profiles</code> based on <code>ssid</code>.   This filter is a string search, any string matches for <code>ssid</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[ssid]","value":"example-ssid"},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_profiles</code> based on <code>description</code>.   This filter is a string search, any string matches for <code>description</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[description]","value":"Example description."},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_profiles</code> based on <code>encryption_method</code>.  You can filter on a single <code>encryption_method</code> or multiple <code>encryption_methods</code> by providing the <code>encryption_methods</code> as a comma separated list.   Available <code>encryption_method</code> options are:</p>\n<ul>\n<li><code>open</code></li>\n<li><code>wep-64</code></li>\n<li><code>wep-128</code></li>\n<li><code>wep-256</code></li>\n<li><code>wpa-psk</code></li>\n<li><code>wpa-eap</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[encryption_method]","value":"wpa-256,wpa-psk"},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_profiles</code> based on <code>authentication_method</code>.  You can filter on a single <code>authentication_method</code> or multiple <code>authentication_methods</code> by providing the <code>authentication_methods</code> as a comma separated list.  <code>authentication_method</code> filter only applies for <code>wifi_profiles</code> where <code>encryption_method</code> is <code>wpa-eap</code>.  Available <code>authentication_methods</code> options are:</p>\n<ul>\n<li><code>eap-tls</code></li>\n<li><code>eap-ttls</code></li>\n<li><code>leap</code></li>\n<li><code>peap</code></li>\n</ul>\n","type":"text/plain"},"key":"filter[authentication_method]","value":"eap-tls,eap-ttls"},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_profile</code> based on whether or not they have an open incident at the time of the request.</p>\n","type":"text/plain"},"key":"filter[open_incident]","value":"false"},{"disabled":true,"description":{"content":"<p><em>Depreciated</em>: This filter has been renamed to filter[in_incident]. filter[in_incident] will no longer work in 16.0.x.</p>\n<p>Filter <code>wifi_profile</code> based on whether or not they have an open incident at the time of the request.</p>\n","type":"text/plain"},"key":"filter[in_incident]","value":"false"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>ssid</code></li>\n<li><code>description</code></li>\n<li><code>encryption_method</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"ssid"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and use either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"}],"variable":[]}},"response":[],"_postman_id":"7301de03-6c06-4c3f-a0c7-74d30fef750b"},{"name":"/wifi_profiles/:id","id":"0aa8897d-7ed3-4249-b184-b2122f29781a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://[HOSTNAME]/wifi_profiles/:id","description":"<p>This endpoint gives the ability to retrieve a specific <code>wifi_profile</code>from the NetBeez server.</p>\n<p>See the <a href=\"#folder-76dcaeda-450a-4fcf-ab81-adfb0b8720a5\">WiFi Profile</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_profiles",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the<code>id</code> of the <code>wifi_profile</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"0aa8897d-7ed3-4249-b184-b2122f29781a"},{"name":"/wifi_profiles","id":"bbc5925d-ddb9-4cc9-86b4-cc25b7ae8530","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"wifi_profile\": {\n\t\t\"ssid\": \"my-ssid\",\n\t\t\"encryption_method\": \"wep-256\",\n\t\t\"description\": \"my ssids description\",\n\t\t\"network_verification_enabled\": false,\n\t\t\"preshared_key\": \"my-preshared-key\"\n\t}\n}"},"url":"https://[HOSTNAME]/wifi_profiles","description":"<p>This endpoint gives the ability to create a <code>wifi_profile</code> on the NetBeez server.</p>\n<p>See the <a href=\"#folder-76dcaeda-450a-4fcf-ab81-adfb0b8720a5\">WiFi Profile</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_profiles"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbc5925d-ddb9-4cc9-86b4-cc25b7ae8530"},{"name":"/wifi_profiles/:id","id":"653c6556-bfc5-46a1-b118-67310b71706b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"wifi_profile\": {\n\t\t\"ssid\": \"my-ssid\",\n\t\t\"encryption_method\": \"wep-256\",\n\t\t\"description\": \"my ssids description\",\n\t\t\"network_verification_enabled\": false,\n\t\t\"preshared_key\": \"my-preshared-key\"\n\t}\n}"},"url":"https://[HOSTNAME]/wifi_profiles/:id","description":"<p>This endpoint gives the ability to update a specific <code>wifi_profile</code> on the NetBeez server.</p>\n<p>See the <a href=\"#folder-76dcaeda-450a-4fcf-ab81-adfb0b8720a5\">WiFi Profile</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does not support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_profiles",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the<code>id</code> of the <code>wifi_profile</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"653c6556-bfc5-46a1-b118-67310b71706b"}],"id":"263aa76b-441f-44bd-be58-b5354382240b","event":[{"listen":"prerequest","script":{"id":"79006954-00c2-463b-9cb9-ce8e8a243161","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dfa942a3-132d-4c4f-98e8-40da5f73c2f3","type":"text/javascript","exec":[""]}}],"_postman_id":"263aa76b-441f-44bd-be58-b5354382240b","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"WiFi Hopping Groups","item":[{"name":"/wifi_hopping_groups","id":"a94a5ba3-aab8-4f7f-a186-c7d0e8ac7078","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://[HOSTNAME]/wifi_hopping_groups?page[offset]=1&page[limit]=25&order[attributes]=name&order[direction]=desc","description":"<p>This endpoint gives the ability to retrieve <code>wifi_hopping_group</code> information from the NetBeez server. See below for available filter options for this endpoint.</p>\n<p>See the <a href=\"#folder-df89b689-8115-4e92-9b7f-6d7389518eed\">WiFi Hopping Group</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_hopping_groups"],"host":["[HOSTNAME]"],"query":[{"disabled":true,"description":{"content":"<p>Filter <code>wifi_hopping_group</code> based on <code>name</code>.   This filter is a string search, any string matches for <code>name</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[name]","value":"Example WiFi Hopping Group"},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_hopping_group</code> based on <code>description</code>.   This filter is a string search, any string matches for <code>description</code> will be provided.</p>\n","type":"text/plain"},"key":"filter[description]","value":"Example WiFi Hopping Group description"},{"disabled":true,"description":{"content":"<p>Filter <code>wifi_hopping_group</code> based on <code>wifi_profiles</code>.  You can filter on a single <code>wifi_profile</code> or multiple <code>wifi_profiles</code> by providing the <code>wifi_profiles</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[wifi_profiles]","value":"1,2"},{"disabled":true,"description":{"content":"<p>Filter <code>agents</code> based on <code>agents</code>.  You can filter on a single <code>agent</code> or multiple <code>agents</code> by providing the <code>agents</code> as a comma separated list of <code>ids</code>.</p>\n","type":"text/plain"},"key":"filter[agents]","value":"5,6"},{"description":{"content":"<p>Use <code>page[offset]</code> to specify which page, as a number, of the results you would like to return in the payload.  By default the first page is returned.</p>\n","type":"text/plain"},"key":"page[offset]","value":"1"},{"description":{"content":"<p>Use <code>page[limit]</code> to specify how many results to return on each page.  The default limit is 25.</p>\n","type":"text/plain"},"key":"page[limit]","value":"25"},{"description":{"content":"<p>Order payload results based on provided attributes.  You may provide a single attribute or multiple attributes as a comma separated list.  The attributes will be applied in the order they are provided.  Use in conjunction with <code>order[direction]</code>.  You may only order attributes in the same direction.  Available attributes for ordering are:</p>\n<ul>\n<li><code>id</code></li>\n<li><code>name</code></li>\n<li><code>description</code></li>\n</ul>\n","type":"text/plain"},"key":"order[attributes]","value":"name"},{"description":{"content":"<p>Use if <code>order[attributes]</code> is provided and provide either <code>asc</code> or <code>desc</code> direction.</p>\n","type":"text/plain"},"key":"order[direction]","value":"desc"}],"variable":[]}},"response":[],"_postman_id":"a94a5ba3-aab8-4f7f-a186-c7d0e8ac7078"},{"name":"/wifi_hopping_groups/:id","id":"9032176f-ff96-4035-886b-cad80c669028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://[HOSTNAME]/wifi_hopping_groups/:id","description":"<p>This endpoint gives the ability to retrieve a specific <code>wifi_hopping_group</code> the NetBeez server.</p>\n<p>See the <a href=\"#folder-df89b689-8115-4e92-9b7f-6d7389518eed\">WiFi Hopping Group</a> data structure reference for additional information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_hopping_groups",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provided the<code>id</code> of the <code>wifi_hopping_group</code> you wish to retrieve.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"9032176f-ff96-4035-886b-cad80c669028"},{"name":"/wifi_hopping_groups","id":"bc04f8c6-186a-4475-99ee-ddd70180363d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"wifi_hopping_group\" : {\n\t\t\"name\": \"Example WiFi Hopping Group\",\n\t\t\"description\": \"Example WiFi Hopping Group description.\",\n\t\t\"interval_minutes\": 5,\n\t\t\"wifi_profiles\": [1,2],\n\t\t\"agents\": [3,4]\n\t}\n}"},"url":"https://[HOSTNAME]/wifi_hopping_groups","description":"<p>This endpoint gives the ability to create a <code>wifi_hopping_group</code> on the NetBeez server.</p>\n<p>See the <a href=\"#folder-df89b689-8115-4e92-9b7f-6d7389518eed\">WiFi Hopping Group</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_hopping_groups"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc04f8c6-186a-4475-99ee-ddd70180363d"},{"name":"/wifi_hopping_groups/:id","id":"90b2c807-318e-468d-b75e-f89efaca408e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"wifi_hopping_group\": {\n\t\t\"name\": \"test name\",\n\t\t\"description\": \"Ut mollis felis dui.\",\n\t\t\"interval_minutes\": 20,\n\t\t\"wifi_profiles\": [100,102,66],\n\t\t\"agents\": [6059]\n\t}\n}"},"url":"https://[HOSTNAME]/wifi_hopping_groups/:id","description":"<p>This endpoint gives the ability to update a specific <code>wifi_hopping_group</code> on the NetBeez server.</p>\n<p>See the <a href=\"#folder-df89b689-8115-4e92-9b7f-6d7389518eed\">WiFi Hopping Group</a> data structure reference for additional information.</p>\n<p><strong>Note:</strong> This endpoint does support our new JSONAPI based create/update payloads but will in the near future. This endpoint will be backwards compatible with the current format for two versions once JSONAPI based payloads have been release for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["wifi_hopping_groups",":id"],"host":["[HOSTNAME]"],"query":[],"variable":[{"description":{"content":"<p>Provide the<code>id</code> of the <code>wifi_hopping_group</code> you wish to update.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"90b2c807-318e-468d-b75e-f89efaca408e"}],"id":"08336411-3aeb-48be-ae87-fe97d76f9103","description":"<p>The WiFi Hopping Group resource allows the retrieval of <code>wifi_hopping_groups</code> that assigned <code>agents</code> periodically jump between. <code>wifi_hopping_groups</code> hop between WiFi networks using the configuration defined in <code>wifi_profiles</code>.</p>\n","event":[{"listen":"prerequest","script":{"id":"8757081e-ba38-43dc-be8d-ec1b9d4d74f6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc980d67-f638-4a41-bd4b-0c52a0284ad3","type":"text/javascript","exec":[""]}}],"_postman_id":"08336411-3aeb-48be-ae87-fe97d76f9103","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"9c7f897b-1dfb-459d-9d9d-954671187973","event":[{"listen":"prerequest","script":{"id":"e59a8465-f40d-4d41-b47c-aecf8364c762","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9c199abf-5934-43a8-8924-4c6a5e41b72a","type":"text/javascript","exec":[""]}}],"_postman_id":"9c7f897b-1dfb-459d-9d9d-954671187973","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Settings APIs","item":[{"name":"Maintenance Mode","item":[{"name":"/settings/maintenance_mode","id":"abbb5775-f858-4ecf-a787-035b58b6538c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://[HOSTNAME]/settings/maintenance_mode","description":"<h3 id=\"get-settingsmaintenance_mode\">GET /settings/maintenance_mode</h3>\n<p>This endpoint retrieves the current maintenance mode settings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["settings","maintenance_mode"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[],"_postman_id":"abbb5775-f858-4ecf-a787-035b58b6538c"},{"name":"/settings/maintenance_mode","id":"61d86e7f-8459-4ee4-b88d-e3ede63eb695","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": false,\n    \"type\": \"setting/maintenance_mode\",\n    \"attributes\": {\n      \"enabled\": true\n    }\n  }\n}"},"url":"https://[HOSTNAME]/settings/maintenance_mode","description":"<h1 id=\"maintenance-mode-settings\">Maintenance Mode Settings</h1>\n<p>This endpoint is used to update the maintenance mode settings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}},"urlObject":{"protocol":"https","path":["settings","maintenance_mode"],"host":["[HOSTNAME]"],"query":[],"variable":[]}},"response":[],"_postman_id":"61d86e7f-8459-4ee4-b88d-e3ede63eb695"}],"id":"fecd522d-3c5c-46d2-8baa-a1469aa7bff5","event":[{"listen":"prerequest","script":{"id":"7acc19e6-15b6-47de-b9d9-8aaf44e5139c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c362fdda-4837-42c4-b653-116dc9caf6e5","type":"text/javascript","exec":[""]}}],"_postman_id":"fecd522d-3c5c-46d2-8baa-a1469aa7bff5","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}}],"id":"aec9b7dd-6498-4ce3-9a3a-bfbe18f2f4f0","_postman_id":"aec9b7dd-6498-4ce3-9a3a-bfbe18f2f4f0","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]},"isInherited":true,"source":{"_postman_id":"2497eaca-6106-40b1-acac-7366b290def4","id":"2497eaca-6106-40b1-acac-7366b290def4","name":"NetBeez API","type":"collection"}}},{"name":"Reference","item":[{"name":"Data Resources","item":[{"name":"Access Point","item":[],"id":"50d998a0-90a2-4b35-8ca8-4899dd8cd3ae","description":"<p>An <code>access_point</code> represents WiFi access points that a wireless <code>agent</code> connects to. <code>access_point</code> does not have any user defined attributes and cannot be modified through the API.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>bssid</code></td>\n<td>string</td>\n<td>Specifies the <code>bssid</code> of the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ssid</code></td>\n<td>string</td>\n<td>Specifies the <code>ssid</code> of the connected <code>access_point</code>.</td>\n<td><strong>Yes</strong>  <br /><code>ssid</code> must be no longer than 32 characters.</td>\n</tr>\n<tr>\n<td><code>protocol</code></td>\n<td>string</td>\n<td>Specifies the <code>protocol</code> in use for the <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>frequency</code></td>\n<td>number</td>\n<td>Specifies the <code>frequency</code> in use for the <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>channel</code></td>\n<td>number</td>\n<td>Specifies the <code>channel</code> in use for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>mode</code></td>\n<td>string</td>\n<td>Specifies the <code>mode</code> for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>encryption</code></td>\n<td>string</td>\n<td>Specifies the <code>encryption</code> for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>bit_rates</code></td>\n<td>string</td>\n<td>Specifies the supported <code>bit_rates</code> for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>last_seen_ts</code></td>\n<td>number</td>\n<td>Specifies the epoch timestamp of when the connected <code>access_point</code> was last seen.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>information_entities</code></td>\n<td>string</td>\n<td>Specifies <code>information_entities</code> for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>security_type</code></td>\n<td>string</td>\n<td>Specifies the <code>security_type</code> for the connected <code>access_point</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"50d998a0-90a2-4b35-8ca8-4899dd8cd3ae","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Access Point Connection","item":[],"id":"ce3a1ce5-ccc0-4e0b-acc1-7e9a4e3851fc","description":"<p>An <code>access_point_connection</code> represents the connection of a wireless <code>agent</code> to a <code>wifi_profile</code> and the timing of each phase of the connection.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dhcp_acqusition_duration</code></td>\n<td>number</td>\n<td>How long, in milliseconds, it took for an <code>agent</code> to acquire a DHCP lease from the associated <code>wifi_profile</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_message</code></td>\n<td>string</td>\n<td>If an error occurs during the <code>access_point_connection</code> attempt and will specify the error message that was captured.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_state</code></td>\n<td>string</td>\n<td>If an error occurs during the <code>access_point_connection</code> attempt and will specify which state the failure occurred on.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>network_connectivity_verification</code></td>\n<td>boolean</td>\n<td>Was the agent able to connect to the internet? The verification test is defined on the associated <code>wifi_profile</code>, if <code>network_verification_enabled</code> is not true on the <code>wifi_profile</code> this attribute will be <code>null</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>The stage of the <code>access_point_connection</code>. <code>state</code> will be one of the following values  <br />  <br />- <code>start_attempt</code>  <br />- <code>association</code>  <br />- <code>authentication</code>  <br />- <code>dhcp</code>  <br />- <code>network_connectivity</code>  <br />- <code>success</code>  <br />- <code>success_disconnected</code>  <br />- <code>connection_lost</code>  <br />- <code>failed</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ts_attached</code></td>\n<td>number</td>\n<td>When the <code>agent</code> connected to the associated <code>wifi_profile</code>. This is an epoch timestamp.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ts_detached</code></td>\n<td>number</td>\n<td>When the <code>agent</code> disconnected to the associated <code>wifi_profile</code>. This is an epoch timestamp.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ts_start</code></td>\n<td>number</td>\n<td>When the <code>agent</code> started the <code>access_point_connection</code> attempt. This is an epoch timestamp.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wpa_assoication_duration</code></td>\n<td>number</td>\n<td>How long, in milliseconds, it took for an <code>agent</code> to connect to the defined <code>ssid</code> of the associated <code>wifi_profile</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wpa_authentication_duration</code></td>\n<td>number</td>\n<td>How long, in milliseconds, it took for an <code>agent</code> to authenticate to the defined <code>ssid</code> of the associated <code>wifi_profile</code>. This only applies if the <code>encryption_method</code> of the associated <code>wifi_profile</code> is not <code>open</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>access_point</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>network_interface</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ce3a1ce5-ccc0-4e0b-acc1-7e9a4e3851fc","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Agent","item":[],"id":"5e1b8362-185c-4b14-bd6f-d0fcd5908495","description":"<p>An <code>agent</code> represents a hardware or software agent that can run various network tests and return the test results. Refer to the <code>User Defined?</code> column to determine which attributes can be used when utilizing <code>POST</code> or <code>PUT</code> endpoints.</p>\n<h4 id=\"regarding-bulk-updating\">Regarding Bulk Updating</h4>\n<p>When using the <a href=\"#request-4425180-b275eb1b-8a41-4f09-ba45-bc9f88a887a9\">bulk updating API</a> you must also supply the <code>id</code> attribute. The <code>id</code> must be the <code>id</code> of an existing <code>agent</code> and this <code>id</code> is not used to update the <code>id</code> of an <code>agent</code> but to look up and identify an <code>agent</code> that the change is to be applied to.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute to help identify an <code>agent</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>User-defined attribute that allows you to add the desired context to your <code>agent</code></td>\n<td>**Yes  <br />**Optional, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>reached_target_test_limit</code></td>\n<td>boolean</td>\n<td>Specifies if the <code>agent</code> has reached its limit for <code>target</code> tests.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>reached_scheduled_test_limit</code></td>\n<td>boolean</td>\n<td>Specifies if the <code>agent</code> has reached its limit for <code>scheduled_tests</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_target_ids</code></td>\n<td>array</td>\n<td>Specifies the <code>nb_target</code> ids currently associated.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_ids</code></td>\n<td>array</td>\n<td>Specifies the <code>nb_test</code> ids currently monitoring.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>uuid</code></td>\n<td>string</td>\n<td>Generated, or in some cases user-defined, identifier for an <code>agent</code>.</td>\n<td>**No  <br />**This attribute can not be changed through the API but can be changed in some cases via <code>agent</code> configuration.</td>\n</tr>\n<tr>\n<td><code>agent_type_name</code></td>\n<td>string</td>\n<td>Specifies the name of the <code>agent_type</code> for the <code>agent</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>os_version</code></td>\n<td>string</td>\n<td>Specifies the operating system version of the <code>agent</code> if it can be determined.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>kernel_version</code></td>\n<td>string</td>\n<td>Specifies the kernel version of the <code>agent</code> if it can be determined.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_class</code></td>\n<td>string</td>\n<td>The class of an <code>agent</code>. <code>agent_class</code> will be one of the following values:  <br />  <br />  <br />- <code>cumulus</code>  <br />- <code>virtual</code>  <br />- <code>gige</code>  <br />- <code>faste</code>  <br />- <code>external</code>  <br />- <code>software</code>  <br />- <code>windows</code>  <br />- <code>mac</code>  <br />- <code>igel</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>active</code></td>\n<td>boolean</td>\n<td>Reports if the agent is currently active.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>User-defined attribute that gives the desired context to the <code>agent</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>string</td>\n<td>The category of an <code>agent</code>. <code>category</code> will be one of the following values:  <br />  <br />- <code>network_agent</code>  <br />- <code>remote_worker_agent</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>software_version</code></td>\n<td>string</td>\n<td>The reported <code>software_version</code> an <code>agent</code> is currently running.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>open_incident_id</code></td>\n<td>number</td>\n<td>The id of the <code>incident</code> that is currently ongoing.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>test_aggregate_counts_by_type</code></td>\n<td>object</td>\n<td>Reports the alert counts per <code>nb_test</code> type.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent_groups</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>network_interfaces</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>open_incident</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>scheduled_nb_test_templates</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5e1b8362-185c-4b14-bd6f-d0fcd5908495","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Agent Performance Metric","item":[],"id":"667b99e6-a961-4c38-85e2-d704534b55a8","description":"<p>An <code>agent_performance_metric</code> represents the status of an <code>agents</code> resources at a particular point in time.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ts</code></td>\n<td>number</td>\n<td>Timestamp of when the <code>agent_performance_metric</code> is taken. This is an epoch timestamp.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>cpu_utilization</code></td>\n<td>number</td>\n<td>An <code>agents</code> cpu utilization represented as a percentage as reported by the operating system.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>memory_utilization</code></td>\n<td>number</td>\n<td>The agent's memory utilization at the time recorded represented as a percentage of the total.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>disk_utilization</code></td>\n<td>number</td>\n<td>The agent's disk space utilization at the time recorded represented as a percentage of the total.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"667b99e6-a961-4c38-85e2-d704534b55a8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Agent Group","item":[],"id":"aa3c04d6-1b6c-4305-a542-8c97c775c439","description":"<p>An <code>agent_group</code> represents groups of <code>agents</code>. An <code>agent_group</code> also can ensure associated <code>agents</code> all run the same <code>targets</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute to help identify an <code>agent_group</code>.</td>\n<td><strong>Yes</strong>  <br />Required, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>auto_assign</code></td>\n<td>boolean</td>\n<td><code>auto_assign</code> specifies that new <code>agents</code> connecting NetBeez for the first time will automatically be added to the <code>agent_group</code>. There can only be one <code>agent_group</code> with <code>auto_assign</code> equal to <code>true</code> at a time.</td>\n<td><strong>Yes</strong>  <br /><code>auto_assign</code> must be either <code>true</code> or <code>false.</code></td>\n</tr>\n<tr>\n<td><code>agent_count</code></td>\n<td>number</td>\n<td>Number of <code>agents</code> currently assigned to the <code>agent_group</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>targets_count</code></td>\n<td>number</td>\n<td>Number of <code>nb_targets</code> currently assigned to the <code>agent_group</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>nb_targets</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"aa3c04d6-1b6c-4305-a542-8c97c775c439","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Agent Log","item":[],"id":"8b19c4b9-8b16-4e4b-a84e-aef9ea985d7e","description":"<p>An <code>agent_log</code> represents various log messages that may be received from an <code>agent</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>event_code</code></td>\n<td>string</td>\n<td>The identifying code of a process or event from the <code>source</code> if provided.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>This contains the message presented in the log from the log <code>source</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>network_interface_key</code></td>\n<td>string</td>\n<td>Represents the network interface the log <code>source</code> is regarding.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>occurred_at</code></td>\n<td>number</td>\n<td>The timestamp of when the log occurred. This is an epoch timestamp.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>severity</code></td>\n<td>string</td>\n<td>The log syslog level reported by the <code>source</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>source</code></td>\n<td>string</td>\n<td><code>source</code> of where the log event is from.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>network_interface</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8b19c4b9-8b16-4e4b-a84e-aef9ea985d7e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Alert","item":[],"id":"7178a6f0-23c6-4f65-ba27-eebe8add065f","description":"<p>An <code>alert</code> represents an issue encountered by an <code>agent</code> while running assigned <code>tests</code> based on configured <code>alert_detectors</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>alert_ts</code></td>\n<td>number</td>\n<td>Specifies the unix epoch timestamp of when the alert was triggered.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>closed_ts</code></td>\n<td>number</td>\n<td>Specifies the unix epoch timestamp of when the alert was closed if the <code>alert</code> is a closing <code>alert</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Specifies the <code>message</code> that pertains to the alert.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>severity</code></td>\n<td>number</td>\n<td>Specifies the syslog level corresponding to the <code>alert</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>severity_name</code></td>\n<td>number</td>\n<td>Specifies the corresponding syslog level name associated to the <code>severity</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>string</td>\n<td>Specifies if the <code>alert</code> is an <code>open</code> <code>alert</code> or <code>closed</code> <code>alert</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>Specifies when the <code>alert</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>string</td>\n<td>Specifies when the <code>alert</code> was last updated.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>opening_alert</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>alert_detector_instance</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>alert_detector</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>nb_target</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7178a6f0-23c6-4f65-ba27-eebe8add065f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Alert Detector","item":[],"id":"e61ae9a6-2634-4d24-9dc1-d6cabaf3bd68","description":"<p>An <code>alert_detector</code> represents the conditions in which a <code>test</code> run by an <code>agent</code> should trigger an <code>alert</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>alert_conditions</code></td>\n<td>string</td>\n<td>Specifies the <code>alert_conditions</code> in which <code>alerts</code> will be created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>alert_detector_type</code></td>\n<td>string</td>\n<td>Specifies the type of <code>alert_detector</code> and will be one of the following values:  <br />- <code>AgentUpDown</code>  <br />- <code>Baseline</code>  <br />-<code>BaselineWatermark</code>  <br />- <code>UpDown</code>  <br />- <code>Watermark</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>alerts_severity</code></td>\n<td>number</td>\n<td>Specifies the <code>alerts_severity</code> that generated <code>alerts</code> should be given. Follows syslog levels.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>attach_by_default</code></td>\n<td>boolean</td>\n<td>Specifies if the <code>alert_detector</code> should be attached to a <code>target</code> by default when a <code>target</code> is created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>Specifies when the <code>alert_detector</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>function_arguments</code></td>\n<td>string</td>\n<td>Specifies the arguments used for the <code>alert_detector</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Specifies the <code>message</code> that will be presented to users when an <code>alert</code> is created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Specifies the User-defined <code>name</code> of the <code>alert_detector</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>reverse_alert_condition</code></td>\n<td>string</td>\n<td>Specifies the conditions in which an <code>alert</code> should be closed that was created by the <code>alert_detector</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>reverse_message</code></td>\n<td>string</td>\n<td>Specifies the <code>reverse_message</code> that will be presented to users when an <code>alert</code> is cleared.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>stats_function</code></td>\n<td>string</td>\n<td>Specifies the <code>stats_function</code> used for the <code>alert_detector</code> , will be one of the following:  <br />- <code>count</code>  <br />- <code>PercentageOfCondition</code>  <br />- <code>TestPerformance</code>  <br />- <code>WirelessConnectivityChanges</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>stream_source</code></td>\n<td>string</td>\n<td>Specifies the <code>stream_source</code> of data where the <code>alert_dectector</code> is used, will be one of the following:  <br />- <code>results</code>  <br />- <code>statistics</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>type_of_alerting_entity</code></td>\n<td>string</td>\n<td>Specifies the <code>type_of_alerting_entity</code> the <code>alert_detector</code> is for, will be one of the following:  <br />- <code>Agent</code>  <br />- <code>NbTest</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>string</td>\n<td>Specifies when the <code>alert_detector</code> was last updated.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>window_type</code></td>\n<td>number</td>\n<td>Specifies the <code>window_type</code> used by the <code>alert_detector</code>, will be one of the following:  <br />  <br />- <code>monotonic</code>  <br />  <br />- <code>sliding</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>window_size</code></td>\n<td>number</td>\n<td>Specifies the <code>window_size</code> used for the <code>alert_detector</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>nb_test_type</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e61ae9a6-2634-4d24-9dc1-d6cabaf3bd68","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"DNS Result","item":[],"id":"c57f681c-4bd7-483e-a1f4-61ef5a009491","description":"<p>An <code>dns_result</code> represents the recorded value of a <code>dns_test</code> that was run by an <code>agent</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>number</td>\n<td>The <code>value</code> of the test result.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>network_interface_type</td>\n<td>string</td>\n<td>The <code>network_interface_type</code> of the test <code>result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>error_code</td>\n<td>number</td>\n<td>If an error occurred during the test then the <code>error_code</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>ts</td>\n<td>number</td>\n<td>An epoch timestamp of when the <code>result</code> occurred.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c57f681c-4bd7-483e-a1f4-61ef5a009491","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"DNS Test","item":[],"id":"b6b01482-9918-4947-b494-139822a99bf9","description":"<p>A <code>dns_test</code> represents the configuration that is used when an <code>agent</code> tests DNS.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dns_server</code></td>\n<td>string</td>\n<td>Specified DNS server address.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>dns_type</code></td>\n<td>number</td>\n<td>Indicates if the DNS test will be done via UDP (2) or TCP (3).</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationship\">Relationship</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>nb_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b6b01482-9918-4947-b494-139822a99bf9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Generated Report","item":[{"name":"Generated Report - Data","item":[],"id":"56d5a769-8bad-4e3e-8966-f3b89cfe4c59","description":"<p><code>generated_report.attributes.data</code> contains attributes that represent the generated data for the given<code>report_type</code>. See below for the attributes for each <code>report_type</code>.</p>\n<h3 id=\"agent-report-data\">Agent Report Data</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent_information</code></td>\n<td>object</td>\n<td><code>agent_information</code> is an object that contains information about the specific <code>agent</code> the <code>generated_report</code> was created for.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_daily</code></td>\n<td>array[object]</td>\n<td><code>incidents_daily</code> contains which hours an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is &gt;= 4 days or &lt;= 30 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_hourly</code></td>\n<td>array[object]</td>\n<td><code>incidents_hourly</code> contains which hours an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is less than 4 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_monthly</code></td>\n<td>array[object]</td>\n<td><code>incident_montly</code> contains which days an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is greater than 30 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>targets</code></td>\n<td>array[object]</td>\n<td><code>targets</code> high level information for each <code>target</code> as well as test averages and alert counts that the specified <code>agent</code> is assigned to.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target_test_performance_dns</code></td>\n<td>array[object]</td>\n<td><code>target_test_perfomrance_dns</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target_test_performance_http</code></td>\n<td>array[object]</td>\n<td><code>target_test_perfomrance_http</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target_test_performance_ping</code></td>\n<td>array[object]</td>\n<td><code>target_test_perfomrance_ping</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target_test_performance_traceroute</code></td>\n<td>array[object]</td>\n<td><code>target_test_perfomrance_traceroute</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_performance</code></td>\n<td>array[object]</td>\n<td><code>wifi_performance</code> contains statistical timeseries data based on <code>access_point_connections</code>. This is only provided if the <code>agent</code> is a <code>wireless</code> <code>agent</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"network-status-report-data\">Network Status Report Data</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>array[object]</td>\n<td><code>agents</code> contains high level information as well as average network speedtest data and alert counts for each <code>agent</code> included in the <code>generated_report</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The begnning point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>targets</code></td>\n<td>array[object]</td>\n<td><code>targets</code> contains high level information as well as average value for each test type and alert counts for each <code>target</code> included in the <code>generated_report</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"target-report-data\">Target Report Data</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>target_information</code></td>\n<td>object</td>\n<td><code>target_information</code> is an object that contains information about the specific <code>target</code> the <code>generated_report</code> was created for.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The begnning point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_daily</code></td>\n<td>array[object]</td>\n<td><code>incidents_daily</code> contains which hours an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is &gt;= 4 days or &lt;= 30 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_hourly</code></td>\n<td>array[object]</td>\n<td><code>incidents_hourly</code> contains which hours an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is less than 4 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incidents_monthly</code></td>\n<td>array[object]</td>\n<td><code>incident_montly</code> contains which days an <code>incident</code> occurred in. This is only provided if the time range of <code>from_ts</code> and <code>to_ts</code> is greater than 30 days.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agents</code></td>\n<td>array[object]</td>\n<td><code>agents</code> contains high level information as well as test averages and alert counts for each <code>agent</code> that is attached to the specified <code>target</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_alerts</code></td>\n<td>array[object]</td>\n<td><code>agent_alerts</code> contains <code>alerts</code> of all attached <code>agents</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_test_performance_dns</code></td>\n<td>array[object]</td>\n<td><code>agent_test_perfomrance_dns</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_test_performance_http</code></td>\n<td>array[object]</td>\n<td><code>agent_test_perfomrance_http</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_test_performance_ping</code></td>\n<td>array[object]</td>\n<td><code>agent_test_perfomrance_ping</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_test_performance_traceroute</code></td>\n<td>array[object]</td>\n<td><code>agent_test_perfomrance_traceroute</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scheduled-test-report-parameters\">Scheduled Test Report Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>array[objects]</td>\n<td><code>agents</code> contains high level information for each <code>agent</code> included in the <code>generated_report</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>scheduled_tests</code></td>\n<td>number</td>\n<td><code>scheduled_tests</code> contains high level information for each <code>scheduled_test</code> included in the <code>generated_report</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>warning_occurrences</code></td>\n<td>array[object]</td>\n<td><code>warning_occurrences</code> contains any occurrences where <code>warning_conditions</code> of a <code>scheduled_tests</code> were met.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>isp_aggregates</code></td>\n<td>array[object]</td>\n<td><code>isp_aggregates</code> contains aggregate result infomation per ISP.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>quality_per_isp</code></td>\n<td></td>\n<td><code>quality_per_isp</code> contains aggregate counts of the quality of each ISP based on thresholds.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>results</code></td>\n<td>array[object]</td>\n<td><code>results</code> contains statistical timeseries data based on <code>from_ts</code> and <code>to_ts</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of where the <code>generated_report</code> data is generated from.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"56d5a769-8bad-4e3e-8966-f3b89cfe4c59","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Generated Report - Parameters","item":[],"id":"ac587d8c-92b4-4804-8349-7c512d732137","description":"<p><code>generated_report.attributes.parameters</code> contains attributes that define how the specified <code>report_type</code> should be created. See below for the valid attributes for each <code>report_type</code>.</p>\n<h3 id=\"agent-report-parameters\">Agent Report Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Must contain a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n<tr>\n<td><code>time_period</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>custom</code>  <br />- <code>today</code>  <br />- <code>last_7_days</code>  <br />- <code>last_30_days</code>  <br />- <code>last_90_days</code>  <br />- <code>last_week</code>  <br />- <code>last_month</code>  <br />- <code>last_3_months</code>  <br />- <code>last_quarter</code></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"network-status-report-parameters\">Network Status Report Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>array[number]</td>\n<td>An array of <code>ids</code> of the <code>agents</code> that are included in the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Must by an array of valid <code>agent</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>agent_groups</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent_groups</code> in which an <code>agent_group</code> assigned <code>agents</code> will the included in the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Must be an array of valid <code>agent_group</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n<tr>\n<td><code>targets</code></td>\n<td>array[number]</td>\n<td>An array of <code>ids</code> of the <code>targets</code> that are included in the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Must by an array of valid <code>target</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>time_period</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>custom</code>  <br />- <code>today</code>  <br />- <code>last_7_days</code>  <br />- <code>last_30_days</code>  <br />- <code>last_90_days</code>  <br />- <code>last_week</code>  <br />- <code>last_month</code>  <br />- <code>last_3_months</code>  <br />- <code>last_quarter</code></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"target-report-parameters\">Target Report Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n<tr>\n<td><code>targets</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>target</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Require, must contain a valid <code>target</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>time_period</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>custom</code>  <br />- <code>today</code>  <br />- <code>last_7_days</code>  <br />- <code>last_30_days</code>  <br />- <code>last_90_days</code>  <br />- <code>last_week</code>  <br />- <code>last_month</code>  <br />- <code>last_3_months</code>  <br />- <code>last_quarter</code></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"scheduled-test-report-parameters\">Scheduled Test Report Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required if <code>scheduled_tests</code> is not provided, must contain a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n<tr>\n<td><code>scheduled_tests</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>scheduled_nb_test_template</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required if <code>agent</code> is not provided, must contain a valid <code>scheduled_nb_test_template</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>time_period</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>custom</code>  <br />- <code>today</code>  <br />- <code>last_7_days</code>  <br />- <code>last_30_days</code>  <br />- <code>last_90_days</code>  <br />- <code>last_week</code>  <br />- <code>last_month</code>  <br />- <code>last_3_months</code>  <br />- <code>last_quarter</code></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The ending point in time of when the <code>generated_report</code> data is generated from.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>time_period</code> is <code>custom</code>, must be a unix epoch timestamp.</td>\n</tr>\n<tr>\n<td><code>test_type_id</code></td>\n<td>number</td>\n<td>The <code>id</code> of the <code>test_type</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>5</code> (iPerf)  <br />- <code>7</code> (Network speedtest)  <br />- <code>8</code> (VoIP)</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ac587d8c-92b4-4804-8349-7c512d732137","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"d90f32c8-9830-4ceb-8d00-b4010b0303c8","description":"<p>A <code>generated_report</code> represents a report that was created either from a <code>scheduled_report</code> or by a <code>user</code> requesting it ad-hoc.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute to help identify the <code>generated_report</code></td>\n<td><strong>Yes</strong>  <br />Required, <code>name</code> must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>report_type</code></td>\n<td>string</td>\n<td>The type of report the <code>generated_report</code> was specified as.</td>\n<td><strong>Yes</strong>  <br />Required , <code>report_type</code> must be one of the following options:  <br />- <code>agent</code>  <br />- <code>network_status</code>  <br />- <code>target</code>  <br />- <code>scheduled_test</code>  <br />- <code>weekly_status</code></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td><code>state</code> where the <code>generated_report</code> is during the generation process. The <code>states</code> are as follows:  <br />- <code>created</code>: The <code>generated_report</code> has been created and queued to have the report data generated.  <br />- <code>processing</code>: The <code>generated_report</code> is in the process of generating the report data based on the provided <code>parameters</code> and <code>report_type</code>.  <br />- <code>generated</code>: The report generation process has completed.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>parameters</code></td>\n<td>object</td>\n<td>All user-supplied criteria that were used to create the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />See <a href=\"#folder-400f2958-ad62-474a-8cde-215178eda03f\">Generated Report - Parameters </a> for <code>report_type</code> specific attributes.</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>string</td>\n<td>The generated <code>data</code> of the <code>generated_report</code>. This attribute is only available when retrieving a specific report using the report's unique <code>id</code></td>\n<td><strong>No</strong>  <br />See <a href=\"#folder-2beb1a71-4ff6-4dc8-a5c0-e56a206ca577\">Generated Report - Data</a> for information regarding individual <code>report_type</code> data.</td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>datetime</td>\n<td>The timestamp of when the <code>generated_report</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>datetime</td>\n<td>The timestamp of when the <code>generated_report</code> was last updated.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>scheduled_report</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d90f32c8-9830-4ceb-8d00-b4010b0303c8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Grouped Alert Count","item":[],"id":"5bb6dddb-015b-45f5-9588-8a1841c71de5","description":"<p>A <code>grouped_alert_count</code> represents the number of alerts by severity per <code>agent</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>The name of the <code>agent</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>counts_grouped_by_severity</code></td>\n<td>object</td>\n<td>When <code>severity</code> is chosen as the <code>group</code> parameter, then this object will consist of key/value pairs where the key is severity <code>1</code> for <code>critical</code> alerts, or <code>4</code> for <code>warning</code> alerts.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>counts_grouped_by_alert_detector</code></td>\n<td>object</td>\n<td>When <code>alert_detector_id</code> is chosen as the <code>group</code> parameter, then this object will consist of key/value pairs where the key is the alert detector's ID.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5bb6dddb-015b-45f5-9588-8a1841c71de5","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"HTTP Result","item":[],"id":"68abff8f-8fd6-417b-956c-cabada59d57e","description":"<p>An <code>http_result</code> represents the recorded value of a <code>http_test</code> that was run by an <code>agent</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>number</td>\n<td>The <code>value</code> of the test result.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>network_interface_type</td>\n<td>string</td>\n<td>The <code>network_interface_type</code> of the test <code>result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>error_code</td>\n<td>number</td>\n<td>If an error occurred during the test then the <code>error_code</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>ts</td>\n<td>number</td>\n<td>An epoch timestamp of when the <code>result</code> occurred.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"68abff8f-8fd6-417b-956c-cabada59d57e","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"HTTP Test","item":[],"id":"b059909d-0ef2-45ea-865c-83bfe896e164","description":"<p>A <code>http_test</code> represents the configuration that is used when an <code>agent</code> tests HTTP.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>http_method</code></td>\n<td>string</td>\n<td>Indicates the HTTP method to be used. Currently only <code>GET</code> is supported.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_protocol</code></td>\n<td>string</td>\n<td>Specifies if HTTP or HTTPS will be used with the configured proxy.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_address</code></td>\n<td>string</td>\n<td>Specifies the proxy IP address or URL to be used for the <code>http_test</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_port</code></td>\n<td>string</td>\n<td>Specifies the port the configured proxy can be reached on.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_authentication_username</code></td>\n<td>string</td>\n<td>The <code>username</code> to be used to authenticate with the proxy should the proxy require authentication.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_authentication_password</code></td>\n<td>string</td>\n<td>The <code>password</code> to be used to authenticate with the proxy should the proxy require authentication.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>authentication_type</code></td>\n<td>string</td>\n<td>Specifies optional authentication for specified <code>nb_test</code> <code>target</code>. Supported options are Basic and NTML.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>authentication_username</code></td>\n<td>string</td>\n<td>The <code>username</code> to be used to authenticate.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>authentication_password</code></td>\n<td>string</td>\n<td>The <code>password</code> to be used to authenticate.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationship\">Relationship</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>nb_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b059909d-0ef2-45ea-865c-83bfe896e164","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Incident","item":[],"id":"e66bcd84-f1de-45e5-bad6-12e8cc54ad40","description":"<p>An <code>incident</code> represents a detected problem with an <code>agent</code> based on a configured threshold of <code>alerts</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ack_ts</code></td>\n<td>number</td>\n<td>The unix epoch timestamp of when the <code>incident</code> was acknowledged by a <code>user</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>incident</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>end_ts</code></td>\n<td>string</td>\n<td>The unix epoch timestamp of when the <code>incident</code> end.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>start_ts</code></td>\n<td>string</td>\n<td>The unix epoch timestamp of when the <code>incident</code> started.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>incident</code> was last updated.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incident_detector</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>incident_logs</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e66bcd84-f1de-45e5-bad6-12e8cc54ad40","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Iperf Test","item":[],"id":"abf488c3-983d-4b42-be22-aaa64a3902e0","description":"<p>A <code>ipref_test</code> represents the configuration that is used when an <code>agent</code> tests Iperf.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>iperf_type</code></td>\n<td>number</td>\n<td>Indicates if the IPerf test will be done via UDP (2) or TCP (3).</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>iperf_time</code></td>\n<td>number</td>\n<td>Specifies the duration of the <code>iperf_test</code> in seconds.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>iperf_port</code></td>\n<td>number</td>\n<td>The indicated port the <code>iperf_test</code> will use to connect to.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>tcp_window</code></td>\n<td>number</td>\n<td>If <code>iperf_type</code> is TCP <code>tcp_window</code> indicates the TCP window size in megabytes.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>bandwidth</code></td>\n<td>number</td>\n<td>Indicates the speed limit that should be imposed on the IPerf test. <code>null</code> would indicate max throughput.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>multicast</code></td>\n<td>boolean</td>\n<td>If <code>iperf_type</code> is UDP this specifies if <code>multicast</code> should be used.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>multicast_ip</code></td>\n<td>string</td>\n<td>If <code>iperf_type</code> is UDP and <code>multicast</code> is enabled this specifies if <code>multicast</code> group address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ttl</code></td>\n<td>number</td>\n<td>Indicates the <code>multicast</code> TTL.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS DSCP/PHB class.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>parallel_streams</code></td>\n<td>number</td>\n<td>If <code>iperf_type</code> is UDP, this indicates the number of <code>parallel_streams</code> to be used during the <code>iperf_test</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>iperf_version</code></td>\n<td>number</td>\n<td>Indicates the version of IPerf the test should use.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>reverse</code></td>\n<td>boolean</td>\n<td>Indicates the direction of the IPerf test between its sources and destination.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"abf488c3-983d-4b42-be22-aaa64a3902e0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Monitoring Condition","item":[],"id":"1927487c-e699-4871-b4c9-7cb5137ffec2","description":"<p>A <code>monitoring_condition</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th><strong>Description</strong></th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute to help identify an <code>monitoring_condition</code>.</td>\n<td><strong>Yes</strong>  <br />Required, <code>name</code> must be provided and must be less than 255 characters.</td>\n</tr>\n<tr>\n<td><code>conditions</code></td>\n<td>object</td>\n<td>User-defined object that defines the conditions of the <code>monitoring_condition</code>.</td>\n<td><strong>Yes</strong>  <br />Required, <code>conditions</code> must be in JSONLogic format. See options below.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"condition-options\">Condition Options</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Condition Type</th>\n<th>Attributes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dns</code></td>\n<td><code>dns_type</code> : Specifies condition should test using UDP or TCP.  <br />Required, available options:  <br />- <code>1</code> (UDP)  <br />- <code>3</code> (TCP)  <br />  <br /><code>target</code>: Specifies the destination that the test will use.  <br />Required, must be a valid IP address or FQDN.  <br />  <br /><code>dns_server</code>: Specifies the DNS server to be used.  <br />Optional, must be a valid IP address or FQDN.  <br />  <br /><code>expected</code>: Sepcifies the expected value of the test.  <br />Optional, must be a valid IP address or FQDN.</td>\n</tr>\n<tr>\n<td><code>vpn</code></td>\n<td><code>expected</code>: Specifies if the VPN should be connected or not connected.  <br />Required, must be one of the following options:  <br />- <code>true</code> (up)  <br />- <code>false</code> (down)</td>\n</tr>\n<tr>\n<td><code>ssid</code></td>\n<td><code>expected</code>: Specifies the expected ssid.  <br />Required, must be a string.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1927487c-e699-4871-b4c9-7cb5137ffec2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Multiagent Test Run","item":[],"id":"50513a8c-bfac-42b0-97ac-a673ea187894","description":"<p>A <code>multiagent_nb_test_run</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ts</code></td>\n<td>number</td>\n<td>The UNIX epoch timestamp in milliseconds of when the test corresponding to this run was executed.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>The current running state that this run is into at the moment of the request. The possible states can be one of <code>initialization</code>, <code>start-destination</code>, <code>start-sources</code>, <code>running</code>, <code>completed</code>, <code>failed</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>configuration</code></td>\n<td>object</td>\n<td>Contains an object describing the configuration parameters of the test executed with this run.</td>\n<td><strong>Yes</strong>  <br />Required, see</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Resource</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>test_type</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"50513a8c-bfac-42b0-97ac-a673ea187894","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"NbTest","item":[],"id":"600d8187-b083-459d-bb6f-0bd74c66ef53","description":"<p>A <code>nb_test</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>target</code></td>\n<td>string</td>\n<td>The IP address or URL the <code>nb_test</code> will use to perform the test against.</td>\n<td><strong>Yes</strong>  <br /><code>target</code> must be present unless <code>nb_test</code> is a scheduled test.</td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>object</td>\n<td>Provides the configuration object of the <code>nb_test</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>number</td>\n<td>Specifies the number of <code>nb_test</code> iterations to be performed when <code>ad_hoc=true</code>.</td>\n<td><strong>Yes</strong>  <br /><code>count</code> must be present and an integer equal to or greater than 0 unless <code>nb_test</code> is a scheduled test.</td>\n</tr>\n<tr>\n<td><code>interval</code></td>\n<td>number</td>\n<td>The number of seconds the <code>nb_test</code> should run for.</td>\n<td><strong>Yes</strong>  <br /><code>interval</code> must be present and an integer greater than 0 unless <code>nb_test</code> is a scheduled test.</td>\n</tr>\n<tr>\n<td><code>timeout</code></td>\n<td>number</td>\n<td>The number of seconds to allow the <code>nb_test</code> to start obtaining results, otherwise the <code>nb_test</code> will indicate it has reached the timeout execution limit.</td>\n<td><strong>Yes</strong>  <br /><code>timeout</code> must be present and an integer greater than or equal to -1 unless <code>nb_test</code>is a scheduled test.</td>\n</tr>\n<tr>\n<td><code>start_ts</code></td>\n<td>timestamp</td>\n<td>The timestamp of when the <code>nb_test</code> was initialized.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ad_hoc</code></td>\n<td>boolean</td>\n<td>Indicates if the <code>nb_test</code> is an <code>ad_hoc</code> test.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>scheduled_type</code></td>\n<td>string</td>\n<td>Indicates if the <code>nb_test</code> is a <code>periodic</code> or <code>scheduled</code> test.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>current_alert_mode</code></td>\n<td>string</td>\n<td>Indicated the current alert mode of the <code>nb_test</code> and will be one of the following alert modes: <code>stopped</code>, <code>unknown</code>, <code>paused</code>, <code>fail</code>, <code>warning</code>, <code>success</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>nb_test</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>interface_type</code></td>\n<td>string</td>\n<td>Specifies the <code>interface_type</code> of the <code>nb_test</code> and will be either <code>wired</code> or <code>wireless</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>current_state</code></td>\n<td>string</td>\n<td>Indicated the current state of the <code>nb_test</code> and will be one of the following states: <code>initialization</code>, <code>running</code>, <code>paused</code>, <code>stop-requested</code>, <code>stopped</code>, <code>exception</code>, <code>change-requested</code>, <code>pause-requested</code>, <code>resume-requested</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>current_state_transition_ts</code></td>\n<td>number</td>\n<td>The timestamp of when the <code>nb_test</code> entered the <code>current_state</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>test_type</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>network_interface</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>A <code>nb_test</code> will also include one of the following relationships based on <code>test_type</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>path_analysis_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ping_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>dns_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>http_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>traceroute_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>speedtest_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>voip_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>iperf_test</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"600d8187-b083-459d-bb6f-0bd74c66ef53","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Network Interface","item":[],"id":"abf2fc72-f44c-4b7b-ab2d-54caa8908f98","description":"<p>An <code>network_interface</code> represents a single network interface of a given <code>agent</code>. An <code>agent</code> will have at least one <code>network_interface</code> and may have multiple interfaces. <code>network_interface</code> does not have any user defined attributes and cannot be modified through the API.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>key</code></td>\n<td>string</td>\n<td>The <code>network_interface</code> reporting interface id.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>mac</code></td>\n<td>string</td>\n<td>The <code>mac</code> address of the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ip_address</code></td>\n<td>string</td>\n<td>The reported IPv4 <code>ip_address</code> of the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>interface_type</code></td>\n<td>string</td>\n<td>The type of <code>network_interface</code> determined by <code>key</code>. <code>interface_type</code> will be one of the following values:  <br />- <code>wired</code>  <br />- <code>wireless</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>model</code></td>\n<td>string</td>\n<td>The <code>model</code> of the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>vendor</code></td>\n<td>string</td>\n<td>The manufacturer of the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>gateway</code></td>\n<td>string</td>\n<td>The <code>gateway</code> of the <code>ip_address</code> obtained by the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>netmask</code></td>\n<td>string</td>\n<td>The <code>netmask</code> of the <code>ip_address</code> obtained by the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>speed</code></td>\n<td>string</td>\n<td>The <code>speed</code> of the <code>network_interface</code> based on the obtained network connection.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>duplex</code></td>\n<td>string</td>\n<td>The <code>duplex</code> of the <code>network_interface</code> based on the obtained network connection.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>speed_duplex_is_auto</code></td>\n<td>boolean</td>\n<td>Determines if the <code>network_interface</code> will auto-negotiate <code>speed</code> and <code>duplex</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>dhcp</code></td>\n<td>boolean</td>\n<td>Determines if the <code>network_interface</code> obtained an <code>ip_address</code> via <code>dhcp</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>mtu</code></td>\n<td>number</td>\n<td>The <code>mtu</code> of the <code>network_interface</code> based on the obtained network connection.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>dns_server1</code></td>\n<td>string</td>\n<td>The primary <code>dns_server</code> of the <code>network_interface</code> based on the obtained network connection.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>dns_server2</code></td>\n<td>string</td>\n<td>The secondary <code>dns_server</code> of the <code>network_interface</code> based on the obtained network connection.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>connected</code></td>\n<td>boolean</td>\n<td>Specifies if the <code>network_interface</code> is currently connected.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ipv6_address</code></td>\n<td>string</td>\n<td>The reported IPv6 <code>ip_address</code> of the <code>network_interface</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ipv6_enabled</code></td>\n<td>boolean</td>\n<td>Specifies if the <code>network_interface</code> has IPv6 enabled.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>external_ip</code></td>\n<td>string</td>\n<td>The reported public <code>ip_address</code> of the <code>network_interface</code>.</td>\n<td></td>\n</tr>\n<tr>\n<td><code>connected_since</code></td>\n<td>number</td>\n<td>The reported epoch timestamp of when the <code>network_interface</code> connected.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"abf2fc72-f44c-4b7b-ab2d-54caa8908f98","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Path Analysis Result","item":[{"name":"Supplemental","item":[],"id":"6a512f67-5a87-405f-b8b0-402fbbce1874","description":"<p><code>supplemental</code> information for a <code>path_analsysi_result</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hostname</code></td>\n<td>string</td>\n<td><code>hostname</code> of the <code>destination</code> that was discovered.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>asn</code></td>\n<td>string</td>\n<td><code>asn</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>asn_name</code></td>\n<td>string</td>\n<td><code>asn_name</code> for the <code>asn</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>asn_type</code></td>\n<td>string</td>\n<td><code>asn_type</code> for the <code>asn</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>asn_domain</code></td>\n<td>string</td>\n<td><code>asn_domain</code> for the <code>asn</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td><code>city</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td>string</td>\n<td><code>region</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>string</td>\n<td><code>country</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td><code>postal_code</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td>number</td>\n<td><code>latitude</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td>number</td>\n<td><code>longitude</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>timezone</code></td>\n<td>string</td>\n<td><code>timezone</code> of the <code>destination</code> that was discovered based on IP address.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6a512f67-5a87-405f-b8b0-402fbbce1874","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"198e926c-1b8a-4e02-828e-38c31e1918c9","description":"<p>A <code>path_analysis_result</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dest_port</code></td>\n<td>number</td>\n<td>The destination port used for the <code>path_analysis_result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td>boolean</td>\n<td>Indicates if the <code>hop</code> is the intended destination.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_code</code></td>\n<td>number</td>\n<td>If an error occurred during the <code>hop</code> then the <code>error_code</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_message</code></td>\n<td>string</td>\n<td>If an error occurred during the <code>hop</code> and a message is available then a <code>error_message</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>hostname</code></td>\n<td>string</td>\n<td>If an FQDN was resolved for the <code>hop</code> then <code>hostname</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>hop_number</code></td>\n<td>number</td>\n<td>The corresponding <code>hop</code> number of the <code>path_analysis_result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ip_address</code></td>\n<td>number</td>\n<td>The <code>ip_address</code> reported by the <code>hop</code> source.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>natted</code></td>\n<td>boolean</td>\n<td>Indicates if NAT was used during the <code>hop</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>rtt</code></td>\n<td>number</td>\n<td>The round trip time of the <code>hop</code> in milliseconds.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ts</code></td>\n<td>number</td>\n<td>An epoch timestamp of when the <code>path_analysis_result</code> occurred.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>supplemental</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"198e926c-1b8a-4e02-828e-38c31e1918c9","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Path Analysis Test","item":[],"id":"27c79f62-f182-4b54-b0fd-8771e6eeb5d1","description":"<p>Below are the <code>options</code> if the <code>nb_test</code> <code>test_type</code> is <code>path_analysis</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>num_flows</code></td>\n<td>number</td>\n<td>Specifies the number of flows that will be done during the test.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>source_port</code></td>\n<td>number</td>\n<td>Specifies the port that should be used when performing the <code>path_anlaysis_test</code> from the <code>agent</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>destination_port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>path_analysis_test</code> will use to connect to.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>max_ttl</code></td>\n<td>number</td>\n<td>Indicates the max number of hops to be attempted on each flow.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>min_ttl</code></td>\n<td>number</td>\n<td>Indicates the minimum number of hops to be attempted on each flow.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>inter_packet_delay</code></td>\n<td>number</td>\n<td>Specifies the number of milliseconds between each hop.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"27c79f62-f182-4b54-b0fd-8771e6eeb5d1","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Ping Result","item":[],"id":"1ea39d5b-64ed-496c-8425-4b4610a7b4e8","description":"<p>The following attributes of a <code>ping_result</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Data Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>number</td>\n<td>The <code>value</code> of the test result.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>network_interface_type</td>\n<td>string</td>\n<td>The <code>network_interface_type</code> of the test <code>result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>error_code</td>\n<td>number</td>\n<td>If an error occurred during the test then the <code>error_code</code> will be given.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>ts</td>\n<td>number</td>\n<td>An epoch timestamp of when the <code>result</code> occurred.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>A <code>result</code> also consists of the following relationships:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_template</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1ea39d5b-64ed-496c-8425-4b4610a7b4e8","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Ping Test","item":[],"id":"70c509c4-492f-40cf-a66f-a66ce781171f","description":"<p>Below are the <code>options</code> if the <code>nb_test</code> <code>test_type</code> is <code>ping_test</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data_size</code></td>\n<td>number</td>\n<td>Specifies the MTU size.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>dont_fragment</code></td>\n<td>boolean</td>\n<td>Specifies if provided MTU should be sent fragmented.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS DSCP/PHB class.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>ping_test</code> will use to connect to.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ping_type</code></td>\n<td>number</td>\n<td>Indicates if the <code>ping_test</code> should use ICMP (2) or TCP (3).</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>flags</code></td>\n<td>string</td>\n<td>If <code>ping_type</code> is set to TCP this field will specify set flags.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>jitter_mos</code></td>\n<td>boolean</td>\n<td>Indicates of <code>ping_test</code> should also calculate jitter and MOS scores.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>force_ipv6</code></td>\n<td>boolean</td>\n<td>If enabled the test will attempt to use only IPv6 addresses of the FQDN target's DNS resolution. Otherwise it will use whatever is available.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"70c509c4-492f-40cf-a66f-a66ce781171f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Scheduled Report","item":[],"id":"b6a4a72d-2133-4af9-aa4e-1eec8f77fb5f","description":"<p>A <code>scheduled_report</code> represents the criteria, <code>report_type</code>, and the schedule for which a <code>generated_report</code> will be created.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agent</code></td>\n<td>string</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> will be generated for.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>scheduled_test</code>, if <code>scheduled_tests</code> is not provided the <code>agent</code> must provided and must be a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>agents</code></td>\n<td>array[number]</td>\n<td>The <code>ids</code> of the <code>agents</code> in which the <code>generated_report</code> will be generated for.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>agent</code> or <code>network_status</code>, then must provide an array of valid <code>agent</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>agent_groups</code></td>\n<td>array[number]</td>\n<td>The <code>id</code> of the <code>agent_groups</code> in which an <code>agent_group</code> assigned <code>agents</code> will be included in the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>network_status</code>, then must provide an array of valid <code>agent_group</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>auto_subscribe</code></td>\n<td>boolean</td>\n<td>Determines if when new <code>users</code> are added to the dashboard if they should automatically be added as a recipient of the <code>generated_report</code> when created by the <code>scheduled_report</code>.</td>\n<td><strong>Yes</strong>  <br />Require, must be either <code>true</code> or <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>scheduled_report</code> was created.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>created_by</code></td>\n<td>string</td>\n<td>The <code>users</code> <code>name</code> of who created the <code>scheduled_report</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>cron_schedule</code></td>\n<td>string</td>\n<td>The cron expression that dictates when the <code>scheduled_report</code> will create the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Required, must be a valid cron expression.</td>\n</tr>\n<tr>\n<td><code>paused</code></td>\n<td>boolean</td>\n<td>Defines if the <code>scheduled_report</code> is currently running.</td>\n<td><strong>Yes</strong>  <br />Required, must be either <code>true</code> or <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>paused_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>scheduled_report</code> was paused.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>from_ts</code></td>\n<td>number</td>\n<td>The beginning point in time of when the <code>generated_report</code> data will be generated in epoch format.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined <code>name</code> to help identify the created <code>scheduled_report</code>.</td>\n<td><strong>Yes</strong>  <br />Required, <code>name</code> must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>report_type</code></td>\n<td>string</td>\n<td>The type of report that was created. Currently the only <code>report_type</code> will be <code>network_status</code>.</td>\n<td><strong>Yes</strong>  <br />Required, <code>report_type</code> must be one of the following options:  <br />- <code>agent</code>  <br />- <code>network_status</code>  <br />- <code>target</code>  <br />- <code>scheduled_test</code>  <br />- <code>weekly_status</code></td>\n</tr>\n<tr>\n<td><code>scheduled_tests</code></td>\n<td>string</td>\n<td>The <code>id</code> of the <code>scheduled_nb_test_template</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>scheduled_test</code>, if <code>agent</code> is not provided then <code>scheduled_tests</code> must be provided and must contain a valid <code>scheduled_nb_test_template</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>system_report</code></td>\n<td>boolean</td>\n<td>Defines if the <code>scheduled_report</code> is a <code>system_report</code> and is added by default by NetBeez.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>targets</code></td>\n<td>array[number]</td>\n<td>An array of <code>ids</code> of the <code>targets</code> that will be included in the <code>generated_report</code>.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>network_status</code> or <code>target</code>, then must contain an array of valid <code>target</code> <code>ids</code>.</td>\n</tr>\n<tr>\n<td><code>test_type_id</code></td>\n<td>string</td>\n<td>Defines the <code>test_type_id</code> the <code>generated_report</code> will be created for.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>scheduled_test</code>, then must be one of the following values:  <br />- <code>5</code> (iPerf)  <br />- <code>7</code> (Network speedtest)  <br />- <code>8</code> (VoIP)</td>\n</tr>\n<tr>\n<td><code>thresholds</code></td>\n<td>string</td>\n<td>For <code>scheduled_test</code> <code>report_type</code> this defines the thresholds in which results for <code>scheduled_tests</code> would be poor.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>time_period</code></td>\n<td>string</td>\n<td>The <code>id</code> of the <code>agent</code> in which the <code>generated_report</code> is generated for.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>custom</code>  <br />- <code>today</code>  <br />- <code>last_7_days</code>  <br />- <code>last_30_days</code>  <br />- <code>last_90_days</code>  <br />- <code>last_week</code>  <br />- <code>last_month</code>  <br />- <code>last_3_months</code>  <br />- <code>last_quarter</code></td>\n</tr>\n<tr>\n<td><code>to_ts</code></td>\n<td>number</td>\n<td>The end point in time of when the <code>generated_report</code> data will be generated in epoch format.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>scheduled_report</code> was last updated.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>contacts</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b6a4a72d-2133-4af9-aa4e-1eec8f77fb5f","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Scheduled Test Results","item":[],"id":"f577e182-84c7-406a-b2ea-e098a3ec93da","description":"<p>A <code>scheduled_test_result</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>error_message</code></td>\n<td>string</td>\n<td>If a scheduled test run fails to produce results, an error message will be present in this attribute, describing the reason it failed.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>severity</code></td>\n<td>number</td>\n<td>If the result is successful it will have severity <code>6</code>, if the metric violates the conditions set on the scheduled test template, then severity will be <code>4</code>, and if the test failed then severity will be <code>1</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ts</code></td>\n<td>number</td>\n<td>The UNIX epoch timestamp in milliseconds of when the test corresponding to this result was run.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ssid</code></td>\n<td>string</td>\n<td>If the agent is wireless then this field will contain the SSID name of the wireless network the NetBeez agent was connected to when this test was run.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>result_values</code></td>\n<td>array</td>\n<td>This contains objects with a <code>key</code> and <code>value</code> attributes, where <code>key</code> is the name of the metric, and <code>value</code> is a float number containing the value measured.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>violated_condition</code></td>\n<td>object</td>\n<td>Contains an object describing the conditions violated if any which are set on the scheduled test template at the time the test corresponding to this result was run.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f577e182-84c7-406a-b2ea-e098a3ec93da","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Scheduled Test Run Statistics","item":[],"id":"f4dd3b1a-02bf-4221-b128-bba78033ea1b","description":"<p>A <code>scheduled_test_result_average</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ts</code></td>\n<td>number</td>\n<td>The UNIX epoch timestamp in milliseconds when the group of tests corresponding to this average result was run. The system makes sure that results from a specific scheduled run are aligned to the triggered time.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>min_severity</code></td>\n<td>number</td>\n<td>The minimum severity marked by the results corresponding to this average result. The severity is <code>1</code> if any of the tests fail, <code>4</code> if any of the tests had a condition violated but none failed to run, or <code>6</code> if all of the tests were successful.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_count</code></td>\n<td>number</td>\n<td>The number of results in this result average that failed to run.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>warning_count</code></td>\n<td>number</td>\n<td>The number of results in this result average that violated conditions.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>avg_result_values</code></td>\n<td>array</td>\n<td>An array of objects with <code>key</code> and <code>value</code> attributes, where <code>key</code> is the metric name and <code>value</code> is the average value reported by all of the tests which ran at the same time.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f4dd3b1a-02bf-4221-b128-bba78033ea1b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Scheduled Test Template","item":[],"id":"4203b0a1-4ecd-4189-8fbe-e35dae9b1cfd","description":"<p>A <code>scheduled_nb_test_template</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n<td>User-defined attribute that defined the label given to the Scheduled test template. This is displayed in the scheduled tests lists and test details header.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target</code></td>\n<td>string</td>\n<td>IP address or FQDN of the destination for this test. This could be an external Iperf server. For network speed and VoIP this can be set to <code>0.0.0.0</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>test_type_id</code></td>\n<td>number</td>\n<td>The id number for the test type is one of the following:  <br />  <br />- Iperf: <code>5</code>  <br />- Network Speed: <code>7</code>  <br />- VoIP: <code>8</code></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>cron_schedule</code></td>\n<td>string</td>\n<td>The cron-style schedule that this test needs to follow. Please refer to <a href=\"https://en.wikipedia.org/wiki/Cron\">this article</a> for proper cron formatting.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_ids</code></td>\n<td>Array[number]</td>\n<td>An array of source agent ids. If the test is agent-to-agent then this should only have 1 id.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>warning_conditions</code></td>\n<td>JSON object</td>\n<td>Set of conditions that when met by the result values those results will be flagged with a warning. The conditions follow the JSON logic format. To be used when familiar with the logic. The UI provides a component that generates this.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>options</code></td>\n<td>object</td>\n<td>This object includes attributes specific to the type of test this template represents. More details on this in the following paragraphs.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p>A <code>scheduled_test_template</code> will also include one of the following list of attributes based on <code>test_type</code>.</p>\n<h3 id=\"ipref\">Ipref</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>iperf_type</code></td>\n<td>number</td>\n<td>Specifies whether the Iperf test used TCP or UDP.</td>\n<td><strong>Yes</strong>  <br />Required, <code>ipref_type</code> must be one of the following values:  <br />- <code>1</code> (TCP)  <br />- <code>2</code> (UDP)</td>\n</tr>\n<tr>\n<td><code>iperf_time</code></td>\n<td>number</td>\n<td>Specifies the amount of time, in seconds, each test iteration will run for.</td>\n<td><strong>Yes</strong>  <br />Required, <code>ipref_time</code> must be provided and must be greater than 0.</td>\n</tr>\n<tr>\n<td><code>iperf_port</code></td>\n<td>number</td>\n<td>Defines the port number where the destination is listening for test connections.</td>\n<td><strong>Yes</strong>  <br />Required, <code>ipref_port</code> must be provided and must be a valid port number.</td>\n</tr>\n<tr>\n<td><code>multicast</code></td>\n<td>boolean</td>\n<td>Specifies if the Ipref test will bind to a multicast group.</td>\n<td><strong>Yes</strong>  <br />Required, <code>multicast</code> must be:  <br />- <code>true</code>  <br />- <code>false</code></td>\n</tr>\n<tr>\n<td><code>multicast_ip</code></td>\n<td>string</td>\n<td>The IP address of the multicast group.</td>\n<td><strong>Yes</strong>  <br />Required if <code>multicast</code> is <code>true</code>, must be a valid IP address.</td>\n</tr>\n<tr>\n<td><code>ttl</code></td>\n<td>number</td>\n<td>The ttl value for multicast tests.</td>\n<td><strong>Yes</strong>  <br />Required, <code>ttl</code> must be provided and must be greater than 0.</td>\n</tr>\n<tr>\n<td><code>tcp_window</code></td>\n<td>number</td>\n<td>Specifies the TCP window size.</td>\n<td><strong>Yes,</strong>  <br />Required if <code>ipref_type</code> is <code>1</code> <code>tcp_window</code> must be provided and must be greater than 0.</td>\n</tr>\n<tr>\n<td><code>bandwidth</code></td>\n<td>number</td>\n<td>Specifies the target bandwidth for the test. This represents the upper bound in Mbits/second (fractions allowed).</td>\n<td><strong>Yes</strong>  <br />Optional, <code>bandwith</code> must be greater than 0. If <code>bandwidth</code> is not provided maximum bandwith with be used. If <code>ipref_version</code> is <code>2</code> then <code>bandwidth</code> will only be applied if <code>iperf_type</code> is <code>2</code>, otherwise maximum <code>bandwidth</code> is used.</td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS flag for the packets.</td>\n<td><strong>Yes</strong>  <br />Optional, can be one of the following values:  <br />- <code>32</code> (PRIORITY_CS1)  <br />- <code>40</code> (PRIORITY_AF11)  <br />- <code>48</code> (PRIORITY_AF12)  <br />- <code>56</code> (PRIORITY_AF13)  <br />- <code>64</code> (IMMEDIATE_CS2)  <br />- <code>72</code> (IMMEDIATE_AF21)  <br />- <code>80</code> (IMMEDIATE_AF22)  <br />- <code>88</code> (IMMEDIATE_AF23)  <br />- <code>96</code> (FLASH_CS3)  <br />- <code>104</code> (FLASH_AF31)  <br />- <code>112</code> (FLASH_AF32)  <br />- <code>120</code> (FLASH_AF33)  <br />- <code>128</code> (FLASH_OVERRIDE_CS4)  <br />- <code>136</code> (FLASH_OVERRIDE_AF41)  <br />- <code>144</code> (FLASH_OVERRIDE_AF42)  <br />- <code>152</code> (FLASH_OVERRIDE_AF43)  <br />- <code>160</code> (CRITICAL_CS5)  <br />- <code>184</code> (CRITICAL_EF)  <br />- <code>192</code> (INTER_NETWORK_CONTROL_CS6)  <br />- <code>224</code> (NETWORK_CONTROL_CS7)</td>\n</tr>\n<tr>\n<td><code>data_size</code></td>\n<td>number</td>\n<td>Specifies the datagram size for UDP tests.</td>\n<td><strong>Yes</strong>  <br />Required if <code>ipref_type</code> is <code>2</code>, <code>data_size</code> must be provided and must be greater than 0.</td>\n</tr>\n<tr>\n<td><code>target_is_agent</code></td>\n<td>number</td>\n<td>Specifies the agent ID if the destination for this test is a NetBeez agent.</td>\n<td><strong>Yes</strong>  <br />Optional if <code>agent</code> to <code>agent</code> Ipref test is desired, <code>target_is_agent</code> must be a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>iperf_version</code></td>\n<td>number</td>\n<td>Specifies the version number for the Iperf to be used.</td>\n<td><strong>Yes</strong>  <br />Required, <code>ipref_version</code> must be one of the following values:  <br />- <code>2</code> (Ipref v2)  <br />- <code>3</code> (Ipref v3)</td>\n</tr>\n<tr>\n<td><code>reverse</code></td>\n<td>boolean</td>\n<td>Specifies if the test should be performed from the destination to the source. Generally used when the source cannot be reached by the destination.</td>\n<td><strong>Yes</strong>  <br />Required, <code>reverse</code> must be one of the following options:  <br />- <code>true</code>  <br />- <code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"network-speedtest\">Network Speedtest</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>speedtest_type</code></td>\n<td>number</td>\n<td>Specifies the type of speedtest to be run.</td>\n<td><strong>Yes</strong>  <br />Required, <code>speedtest_type</code> must be provided and must be one of the following values:  <br />- <code>2</code> (M-Lab NDT)  <br />- <code>3</code> (Netflix Fast.com)</td>\n</tr>\n<tr>\n<td><code>secure</code></td>\n<td>boolean</td>\n<td>Specifies if the traffic should be encrypted.</td>\n<td><strong>Yes</strong>  <br />Required, <code>secure</code> must be provided and must be one of the following values:  <br />- <code>true</code>  <br />- <code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"voip\">VoIP</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>codec</code></td>\n<td>string</td>\n<td>Specifies the codec which the calls of this test should simulate.</td>\n<td><strong>Yes</strong>  <br />Required, <code>codec</code> must be one of the following values:  <br />- <code>g711</code>  <br />- <code>g729</code>  <br />- <code>g723-63</code>  <br />- <code>g723-53</code>  <br />- <code>g726</code>  <br />- <code>g728-16</code>  <br />- <code>g722-64</code></td>\n</tr>\n<tr>\n<td><code>voip_time</code></td>\n<td>number</td>\n<td>Specifies the amount of time, in seconds, each test iteration will run for.</td>\n<td><strong>Yes</strong>  <br />Required, <code>voip_time</code> must be provided and must be greater than 0.</td>\n</tr>\n<tr>\n<td><code>voip_port</code></td>\n<td>number</td>\n<td>Defines the port number where the destination is listening for test connections.</td>\n<td><strong>Yes</strong>  <br />Required, <code>voip_port</code> must be provided and must be a valid port number.</td>\n</tr>\n<tr>\n<td><code>target_is_agent</code></td>\n<td>number</td>\n<td>Specifies the agent ID if the destination for this test is a NetBeez agent.</td>\n<td><strong>Yes</strong>  <br />Required,<code>target_is_agent</code> must provided and must be a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship</strong></th>\n<th><strong>One or Many</strong></th>\n<th><strong>Options</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>monitoring_condition</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>scheduled_test_condition</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4203b0a1-4ecd-4189-8fbe-e35dae9b1cfd","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Speedtest Test","item":[],"id":"b291839f-afbb-44bd-8a07-b4b1b2aea76c","description":"<p>Below are the <code>options</code> if the <code>nb_test</code> <code>test_type</code> is scheduled <code>speedtest</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>speedtest_type</code></td>\n<td>number</td>\n<td>Specifies if the speedtest should use Ookla (1), NDT (2), or fast.com (3).</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>secure</code></td>\n<td>boolean</td>\n<td>Indicates if the speedtest should be done securely.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b291839f-afbb-44bd-8a07-b4b1b2aea76c","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Target","item":[{"name":"Target Template","item":[],"id":"521f47b5-bb2c-4cdb-b09e-b766b50fc238","description":"<p>NetBeez gives you a simplified way of generating a target. Users will provide basic information and Netbeez will handle the rest of the configuration with pre-defined defaults.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>ID</th>\n<th>Additional Configuration?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Website</td>\n<td><code>website</code></td>\n<td><code>name</code> : The name of the website that is used as the name of the target.  <br />Required, <code>name</code> must be provided and must be less than 255 characters.  <br />  <br /><code>url</code>: The URL that will be used for the test.  <br />Required, <code>url</code> must be a valid URL.  <br />  <br /><code>ping_test</code>: Defines if a ping test should also be configured.  <br />Required, <code>ping_test</code> must be provided and must be one of the following values:  <br />- <code>true</code>  <br />- <code>false</code>  <br />  <br /><code>jitter_and_mos_enabled</code>: Defines target tests should be also configured with jitter and MOS where applicable.  <br />Required, <code>jitter_and_mos_enabled</code> must be provided and must be one of the following values:  <br />- <code>true</code>  <br />- <code>false</code></td>\n</tr>\n<tr>\n<td>DNS</td>\n<td><code>dns</code></td>\n<td><code>nameserver_ips</code>: Defines the list of nameserver IP addresses to be used.  <br />Required, <code>nameserver_ip</code> must be provided and must be an array of valid ip addresses.  <br />  <br /><code>fqdn</code>: Defines the FQDN in which the the <code>nameserver_ips</code> would be included in.  <br />Required, <code>fqdn</code> must be provided and must be a valid FQDN.  <br />  <br /><code>dns_type</code>: Defines if the test should use UDP or TCP.  <br />Required, <code>dns_type</code> must be provided and must be one of the following values:  <br />- <code>2</code> (UDP)  <br />- <code>3</code> (TCP)</td>\n</tr>\n<tr>\n<td>VPN</td>\n<td><code>vpn</code></td>\n<td><code>fqdn</code>: Defines an IP or FQDN that would be accessible through a VPN.  <br />Required, <code>fqdn</code> must be provided and must be a valid IP address or FQDN.  <br />  <br /><code>ping_interval</code>: Specifies how often a ping test should run for this target.  <br />Required, <code>ping_interval</code> must be provided and must be an integer greater than 0.</td>\n</tr>\n<tr>\n<td>Gateway</td>\n<td><code>gateway</code></td>\n<td><code>ping_interval</code>: Specifies how often a ping test should run for this target.  <br />Required, <code>ping_interval</code> must be provided and must be an integer greater than 0.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"521f47b5-bb2c-4cdb-b09e-b766b50fc238","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Saas Target","item":[],"id":"4a20f542-9897-485b-8cd6-b95865f4af64","description":"<p>NetBeez gives you an easy way to set up monitoring for popular SaaS platforms using the <a href=\"#request-e3fff930-f254-4188-b0b4-6e676fbb133d\">/targets/saas</a> endpoint. See below for available SaaS options. If SaaS has additional configuration see corresponding table below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>ID</th>\n<th>Additional Configuration?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Five9 North America</td>\n<td>five9_na</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Five9 Europe</td>\n<td>five9_eu</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Five9 UK/Ireland</td>\n<td>five9_uk</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Five9 Asia Pacific</td>\n<td>five9_ap</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Five9 Australia</td>\n<td>five9_aus</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Five9 South America</td>\n<td>five9_sa</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Workspace</td>\n<td>google_workspace</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Docs</td>\n<td>google_docs</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Mail</td>\n<td>google_mail</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Calendar</td>\n<td>google_calendar</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Hangouts</td>\n<td>google_hangouts</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Google Meet</td>\n<td>google_meet</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Microsoft Office 364 Login</td>\n<td>ms_office_365_login</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Microsoft Office 365 Applications</td>\n<td>ms_office_365_app</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Microsoft SharePoint Base</td>\n<td>sharepoint_base</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Microsoft SharePoint Tenant</td>\n<td>sharepoint_tentant</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>Microsoft Outlook</td>\n<td>ms_outlook</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Microsoft Teams</td>\n<td>ms_teams</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Salesforce Base</td>\n<td>salesforce_base</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Salesforce My Domain</td>\n<td>salesforce_my_domain</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>HubSpot</td>\n<td>hubspot</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Service Now</td>\n<td>service_now</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>Slack Base</td>\n<td>slack_base</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Slack Team Workspace</td>\n<td>slack_team_workspace</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>Webex Base</td>\n<td>webex_base</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Webex Tenant</td>\n<td>webex_tenant</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>Zoom Base</td>\n<td>zoom_base</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>Zoom Meeting</td>\n<td>zoom_meeting</td>\n<td><strong>Yes</strong>  <br /><code>name</code> (String) must be a provided attribute.</td>\n</tr>\n<tr>\n<td>8x8 India</td>\n<td>8x8_india</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 Amsterdam</td>\n<td>8x8_amsterdam</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 Brazil</td>\n<td>8x8_brazil</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 Singapore</td>\n<td>8x8_singapore</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 West US</td>\n<td>8x8_west_us</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 East US</td>\n<td>8x8_east_us</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 UK</td>\n<td>8x8_uk</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 Australia</td>\n<td>8x8_australia</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td>8x8 Hong Kong</td>\n<td>8x8_hong_kong</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4a20f542-9897-485b-8cd6-b95865f4af64","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"b4e7de06-0045-4856-a102-1856ab5dff25","description":"<p>A <code>target</code> represents a set of resources that need to be monitored as a unit. It consists of multiple <code>test_templates</code>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>created_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>target</code> was created.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>report_type</code> is <code>scheduled_test</code>, if <code>scheduled_tests</code> is not provided the <code>agent</code> must provided and must be a valid <code>agent</code> <code>id</code>.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute to help identify a <code>target</code>.</td>\n<td>Yes  <br />Required, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>User-defined attribute that gives the desired context to the <code>target</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>smtp_notify</code></td>\n<td>boolean</td>\n<td>Determines if aggregate alerts and incidents should be sent for this specific <code>target</code>. This overrides global <code>target</code> <code>aggregate_alert</code> and <code>incident</code> notification settings. SMTP notifications must be turned on globally.</td>\n<td><strong>Yes</strong>  <br />Require, must be either <code>true</code> or <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>test_aggregate_counts_by_type</code></td>\n<td>object</td>\n<td></td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>string</td>\n<td>The timestamp of when the <code>target</code> was updated.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>vpn_target</code></td>\n<td>boolean</td>\n<td></td>\n<td><strong>Yes</strong>  <br />Required, must be <code>true</code> or <code>false</code></td>\n</tr>\n<tr>\n<td><code>wifi_test</code></td>\n<td>boolean</td>\n<td></td>\n<td><strong>Yes</strong>  <br />Required, must be be <code>true</code> or <code>false</code></td>\n</tr>\n<tr>\n<td><code>wired_test</code></td>\n<td>boolean</td>\n<td></td>\n<td><strong>Yes</strong>  <br />Required, must be be <code>true</code> or <code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>direct_agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>agent_group_agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>agent_groups</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>contacts</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>monitoring_condition</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>open_incident</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>test_templates</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b4e7de06-0045-4856-a102-1856ab5dff25","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Test Template","item":[],"id":"649b05b3-95e9-4a44-b564-f10f71b95a6b","description":"<p>A <code>test_template</code> describes a type of test and how it should be performed and alerted on, with the destination being a specific FQDN, IP address (and port, wherever is applicable) or URL (in the case of HTTP).</p>\n<h3 id=\"attribites\">Attribites</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n<td>A string to use for displaying the template.</td>\n<td><strong>Yes</strong>  <br />If left empty the system will use the target field to display the template.</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>number</td>\n<td>The number of test runs to perform during the lifetime of this test.</td>\n<td><strong>Yes</strong>  <br />This is generally used in ad-hoc tests so you may ignore it or set to <code>0</code></td>\n</tr>\n<tr>\n<td><code>interval</code></td>\n<td>number</td>\n<td>Represents the number of seconds between two test runs.</td>\n<td><strong>Yes</strong>  <br />Optional. The default depending on the test type is: { <code>ping</code>: <code>5</code>, <code>dns</code>: <code>10</code>, <code>http</code>: <code>60</code>, <code>traceroute</code>: <code>120</code>, <code>path_analysis</code>: <code>300</code> }</td>\n</tr>\n<tr>\n<td><code>timeout</code></td>\n<td>number</td>\n<td>Represents the number of seconds to wait before declaring a test as failed.</td>\n<td><strong>Yes</strong>  <br />Optional. The default is 5 seconds.</td>\n</tr>\n<tr>\n<td><code>target</code></td>\n<td>string</td>\n<td>An IP address, FQDN or URL of the destination for the test.</td>\n<td><strong>Yes</strong>  <br />Required.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following paragraphs will describe test-type specific attributes that are included with the common attributes described above.</p>\n<h4 id=\"ping\">Ping</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attributes</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data_size</code></td>\n<td>number</td>\n<td>Specifies the MTU size.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>dont_fragment</code></td>\n<td>boolean</td>\n<td>Specifies if provided MTU should be sent fragmented.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS DSCP/PHB class.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>ping_test</code> will use to connect to.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>ping_type</code></td>\n<td>number</td>\n<td>Indicates if the <code>ping_test</code> should use ICMP (2) or TCP (3).</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>flags</code></td>\n<td>string</td>\n<td>If <code>ping_type</code> is set to TCP this field will specify set flags.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>jitter_mos</code></td>\n<td>boolean</td>\n<td>Indicates of <code>ping_test</code> should also calculate jitter and MOS scores.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>force_ipv6</code></td>\n<td>boolean</td>\n<td>If enabled the test will attempt to use only IPv6 addresses of the FQDN target's DNS resolution. Otherwise it will use whatever is available.</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"dns\">DNS</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dns_server</code></td>\n<td>string</td>\n<td>Specified DNS server address.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>dns_type</code></td>\n<td>number</td>\n<td>Indicates if the DNS test will be done via UDP (2) or TCP (3).</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"http\">HTTP</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>http_method</code></td>\n<td>string</td>\n<td>Indicates the HTTP method to be used. Currently only <code>GET</code> is supported.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>proxy_protocol</code></td>\n<td>string</td>\n<td>Specifies if HTTP or HTTPS will be used with the configured proxy.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>proxy_address</code></td>\n<td>string</td>\n<td>Specifies the proxy IP address or URL to be used for the <code>http_test</code>.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>proxy_port</code></td>\n<td>string</td>\n<td>Specifies the port the configured proxy can be reached on.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>proxy_authentication_username</code></td>\n<td>string</td>\n<td>The <code>username</code> to be used to authenticate with the proxy should the proxy require authentication.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>proxy_authentication_password</code></td>\n<td>string</td>\n<td>The <code>password</code> to be used to authenticate with the proxy should the proxy require authentication.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>authentication_type</code></td>\n<td>string</td>\n<td>Specifies optional authentication for specified <code>nb_test</code> <code>target</code>. Supported options are Basic and NTML.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>authentication_username</code></td>\n<td>string</td>\n<td>The <code>username</code> to be used to authenticate.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>authentication_password</code></td>\n<td>string</td>\n<td>The <code>password</code> to be used to authenticate.</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"traceroute\">Traceroute</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hop_max</code></td>\n<td>number</td>\n<td>Indicates the max number of hops allowed during the <code>traceroute_test</code>.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>hop_timeout</code></td>\n<td>number</td>\n<td>Specifies the timeout of each hop.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>traceroute_type</code></td>\n<td>number</td>\n<td>Indicates if the test will be done via UDP (1), ICMP (2), or TCP (3).</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS DSCP/PHB class.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>traceroute_test</code> will use to connect to.</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"path-analysis\">Path Analysis</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>num_flows</code></td>\n<td>number</td>\n<td>Specifies the number of flows that will be done during the test.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>source_port</code></td>\n<td>number</td>\n<td>Specifies the port that should be used when performing the <code>path_anlaysis_test</code> from the <code>agent</code>.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>destination_port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>path_analysis_test</code> will use to connect to.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>max_ttl</code></td>\n<td>number</td>\n<td>Indicates the max number of hops to be attempted on each flow.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>min_ttl</code></td>\n<td>number</td>\n<td>Indicates the minimum number of hops to be attempted on each flow.</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>inter_packet_delay</code></td>\n<td>number</td>\n<td>Specifies the number of milliseconds between each hop.</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relationship</th>\n<th><strong>One or Many</strong></th>\n<th><strong>Optional?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>test_type</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>alert_detectors</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"649b05b3-95e9-4a44-b564-f10f71b95a6b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Traceroute Results","item":[],"id":"fdce45af-a298-4f54-8cd4-1c8fde448559","description":"<p>A <code>traceroute_result</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>timestamp</code></td>\n<td>number</td>\n<td>An epoch timestamp of when the test occurred.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>total_hops</code></td>\n<td>number</td>\n<td>The number of total hops included in the result.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>hops</code></td>\n<td>object</td>\n<td>The individual hop results.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><p><code>hops</code> under a <code>traceroute_result</code> consists of the following attributes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hop_number</code></td>\n<td>number</td>\n<td>The corresponding hop number is the <code>traceroute_result</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>ip_address</code></td>\n<td>string</td>\n<td>The <code>ip_address</code> reported by hop source.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>mtu</code></td>\n<td>number</td>\n<td>The maximum transition unit of the hop.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>rtt</code></td>\n<td>number</td>\n<td>The round trip time of the hop.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>domain</code></td>\n<td>string</td>\n<td>The <code>domain</code> reported by hop source.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>error_message</code></td>\n<td>string</td>\n<td>If any error message is encountered during a hop the error is recorded here.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fdce45af-a298-4f54-8cd4-1c8fde448559","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Traceroute Test","item":[],"id":"1cd7b923-0d73-49f1-8049-aab2bf3f63f6","description":"<p>Below are the <code>options</code> if the <code>nb_test</code> <code>test_type</code> is <code>traceroute</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>hop_max</code></td>\n<td>number</td>\n<td>Indicates the max number of hops allowed during the <code>traceroute_test</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>hop_timeout</code></td>\n<td>number</td>\n<td>Specifies the timeout of each hop.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>traceroute_type</code></td>\n<td>number</td>\n<td>Indicates if the test will be done via UDP (1), ICMP (2), or TCP (3).</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>tos</code></td>\n<td>number</td>\n<td>Specifies the TOS DSCP/PHB class.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>port</code></td>\n<td>number</td>\n<td>The indicated <code>port</code> the <code>traceroute_test</code> will use to connect to.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1cd7b923-0d73-49f1-8049-aab2bf3f63f6","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Transition State","item":[],"id":"97ba51c9-65db-424a-a8bc-db275042cb58","description":"<p>Transition all tests by using one of the following attributes. You must use one of the following.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description/Options</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>test_ids</code></td>\n<td>array</td>\n<td>An array of the <code>nb_test_ids</code> that will be transitioned.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>agent_ids</code></td>\n<td>array</td>\n<td>An array of the <code>agent_ids</code>. All <code>nb_tests</code> will be retrieved for list of <code>agents</code> provided and those <code>nb_tests</code> will then be transitioned.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>target_ids</code></td>\n<td>array</td>\n<td>An array of the <code>target_ids</code>. All <code>nb_tests</code> will be retrieved for list of <code>targets</code> provided and those <code>nb_tests</code> will then be transitioned.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profile_ids</code></td>\n<td>array</td>\n<td>An array of the <code>wifi_profile_ids</code>. All <code>nb_tests</code> will be retrieved for list of <code>wifi_profiles</code> provided and those <code>nb_tests</code> will then be transitioned.</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"97ba51c9-65db-424a-a8bc-db275042cb58","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"VoIP Test","item":[],"id":"833e6220-0261-413c-b28d-e28c24193010","description":"<p>Below are the <code>options</code> if the <code>nb_test</code> <code>test_type</code> is scheduled <code>voip_test</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th><strong>User Defined?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>codec</code></td>\n<td>string</td>\n<td>Indicates the codec used by the <code>voip_test</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>voip_time</code></td>\n<td>number</td>\n<td>Specifies the number of seconds the <code>voip_test</code> will run for.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>voip_port</code></td>\n<td>number</td>\n<td>The indicated port the <code>voip_test</code> will use to connect to.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"833e6220-0261-413c-b28d-e28c24193010","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"WiFi Hopping Group","item":[],"id":"dc0a35d8-bd94-4b36-a4fc-cc795e20e0ad","description":"<p>A <code>wifi_hopping_group</code> represents a group of between 2 and 4 <code>wifi_profiles</code> in which a <code>wireless</code> <code>agent</code> will \"hop\" between at a given interval.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>User-defined attribute to help give more context to a <code>wifi_hopping_group</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>interval_minutes</code></td>\n<td>number</td>\n<td>The number of minutes for assigned <code>agents</code> of the <code>wifi_hopping_group</code> jump to an associated <code>wifi_profile</code>.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- 2 <code>wifi_profiles</code>: 5, 10, 15, 30, 60, 120, 180, 240, 360  <br />- 3 <code>wifi_profiles</code>: 5, 10, 20, 60, 120, 240  <br />- 4 <code>wifi_profiles</code>: 5, 10, 15, 60, 120, 180, 360</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>User-defined attribute that describes the <code>wifi_hopping_group</code>.</td>\n<td><strong>Yes</strong>  <br />Required, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>processing</code></td>\n<td>string</td>\n<td>Indicates if the <code>wifi_hopping_group</code> is still processing requested changes such as updates to assigned <code>agents</code> or <code>wifi_profiles</code>.</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_hopping_group_version</code></td>\n<td>number</td>\n<td>Represents a version number for the current <code>wifi_hopping_group</code> configuration.</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Resource</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>wifi_profiles</code></td>\n<td>Many</td>\n<td><strong>No</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"dc0a35d8-bd94-4b36-a4fc-cc795e20e0ad","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"WiFi Profile","item":[],"id":"aa27fa16-7fe3-4576-84c8-5c45084b6150","description":"<p>A <code>wifi_profile</code> represents a wireless network an <code>agent</code> can connect to.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Data Type</th>\n<th>Description</th>\n<th>User Defined?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>authentication_method</code></td>\n<td>string</td>\n<td>The authentication protocol to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, unless <code>encryption_methods</code> is <code>wpa-eap</code>, then one of the following values must be provided:  <br />- <code>eap-tls</code>  <br />- <code>eap-ttls</code>  <br />- <code>leap</code>  <br />- <code>peap</code></td>\n</tr>\n<tr>\n<td><code>ca_cert</code></td>\n<td>string</td>\n<td>The CA Certificate to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, unless <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-tls</code> or <code>eap-ttls</code>, then a certificate must be provided.</td>\n</tr>\n<tr>\n<td><code>client_cert</code></td>\n<td>string</td>\n<td>The certificate to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, unless <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-tls</code>, then a certificate must be provided.</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>User-defined attribute that gives the desired context to the <code>wifi_profile</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, must be no longer than 255 characters.</td>\n</tr>\n<tr>\n<td><code>encryption_method</code></td>\n<td>string</td>\n<td>The encryption to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Required, must be one of the following values:  <br />- <code>open</code>  <br />- <code>wep-64</code>  <br />- <code>wep-128</code>  <br />- <code>wep-256</code>  <br />- <code>wpa-psk</code>  <br />- <code>wpa-eap</code></td>\n</tr>\n<tr>\n<td><code>identity</code></td>\n<td>string</td>\n<td>The logon/username to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>encryption_method</code> is <code>wap-eap</code>, then a value must be provided.</td>\n</tr>\n<tr>\n<td><code>interval_minutes</code></td>\n<td>number</td>\n<td>If and how often <code>agents</code> should reconnect to the <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, must be one of the following values:  <br />- <code>null</code> (will not reconnect periodically)  <br />- <code>5</code>  <br />- <code>10</code>  <br />- <code>15</code>  <br />- <code>20</code>  <br />- <code>30</code>  <br />- <code>60</code>  <br />- <code>120</code>  <br />- <code>180</code>  <br />- <code>240</code>  <br />- <code>360</code></td>\n</tr>\n<tr>\n<td><code>network_verification_enabled</code></td>\n<td>boolean</td>\n<td>Defines if a network test will be performed to determine if the <code>agent</code> is connected to the internet.</td>\n<td><strong>Yes</strong>  <br />Required, should be either <code>true</code> or <code>false</code>.</td>\n</tr>\n<tr>\n<td><code>network_verification_target</code></td>\n<td>string</td>\n<td>The FQDN, URL, or IP address that will be used when performing the network test to determine if the <code>agent</code> is connected to the internet.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>network_verification_enabled</code> is <code>true</code>, then a valid FQDN, URL, or IP address must be provided.</td>\n</tr>\n<tr>\n<td><code>network_verification_test</code></td>\n<td>string</td>\n<td>The type of network test that will be attempted based on the <code>network_verification_target</code>.</td>\n<td><strong>Yes</strong>  <br />Optional unless <code>network_verification_enabled</code> is <code>true</code>, then one of the following values must be provided:  <br />- <code>http</code>  <br />- <code>ping</code></td>\n</tr>\n<tr>\n<td><code>password</code></td>\n<td>string</td>\n<td>The password to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, only applies when <code>encryption_method</code> is <code>wpa-eap</code>.</td>\n</tr>\n<tr>\n<td><code>phase2</code></td>\n<td>string</td>\n<td>The type of Phase 2 authentication to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, only applies with <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-ttls</code>, then must be one of the following values:  <br />- <code>auth=MD5</code>  <br />- <code>auth=MSCHAPV2</code></td>\n</tr>\n<tr>\n<td><code>preshared_key</code></td>\n<td>string</td>\n<td>The preshared key to be used when an <code>agent</code> connects to an <code>ssid</code>.</td>\n<td><strong>Yes</strong>  <br />Required when <code>encryption_method</code> <code>wep-64</code>, <code>wep-128</code>, <code>wep-256</code>, or <code>wpa-psk</code>.</td>\n</tr>\n<tr>\n<td><code>private_key</code></td>\n<td>string</td>\n<td>The private key to be used when an <code>agent</code> connects to an <code>ssid</code>. This only applies when <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-tls</code>.</td>\n<td><strong>Yes</strong>  <br />Required when<code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-ttls</code>, then must be one of the following values:  <br />- <code>auth=MD5</code>  <br />- <code>auth=MSCHAPV2</code></td>\n</tr>\n<tr>\n<td><code>private_key_password</code></td>\n<td>string</td>\n<td>The private key password to be used when an <code>agent</code> connects to an <code>ssid</code>. This only applies when <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-tls</code>.</td>\n<td><strong>Yes</strong>  <br />Optional, only applies when <code>encryption_method</code> is <code>wpa-eap</code> and <code>authentication_method</code> is <code>eap-tls</code>.</td>\n</tr>\n<tr>\n<td><code>ssid</code></td>\n<td>string</td>\n<td>The <code>ssid</code> name of the WiFi network that an <code>agent</code> will connect to.</td>\n<td><strong>Yes</strong>  <br />Rquiredand must be no longer than 32 characters.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relationships\">Relationships</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Resource</th>\n<th>One or Many</th>\n<th>Optional?</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>open_incident</code></td>\n<td>One</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>nb_test_counters</code></td>\n<td>One</td>\n<td><strong>No</strong></td>\n</tr>\n<tr>\n<td><code>wifi_hopping_groups</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n<tr>\n<td><code>wifi_hopping_group_agents</code></td>\n<td>Many</td>\n<td><strong>Yes</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"aa27fa16-7fe3-4576-84c8-5c45084b6150","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"b25ce373-5457-495a-ada3-67bb9f327cbd","_postman_id":"b25ce373-5457-495a-ada3-67bb9f327cbd","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}},{"name":"Topics","item":[{"name":"POST/PUT using JSONAPI","item":[],"id":"388a8feb-00f1-4541-90bf-fde9e83f151d","description":"<h3 id=\"background\">Background</h3>\n<p>Before we started implementing JSONAPI payload support for <em>POST</em> and <em>PUT</em> requests you were required to provide all information regarding relationships when making a request. This required consumers of the API to make additional API calls to gather the required information making it cumbersom to use.</p>\n<h4 id=\"example\">Example</h4>\n<p>You have a <code>Target</code> and has a currently relationship to <code>Agents</code> 1, 2, and 3. Now you wanted to also add <code>Agent</code> 4 to the <code>Target</code>. That meant you needed to provided <code>Agent</code> ids 1, 2, 3, and 4. Otherwise providing just <code>Agent</code> 4 would remove <code>Agents</code> 1, 2, and 3.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"target\": {\n    ...\n    \"agent_ids\": [4] // Agents 1, 2, 3 will be removed.\n    ...\n  }\n}\n{\n  \"target\": {\n    ...\n    \"agent_ids\": [1,2,3,4] // Agent 4 is added to 1, 2, and, 3.\n    ...\n  }\n}\n\n</code></pre>\n<h3 id=\"upserts-with-jsonapi\">Upserts with JSONAPI</h3>\n<p>With JSONAPI payloads for <em>POST</em> and <em>PUT</em> requests we can now support upserting of associations. That means consumers of the API will no longer have to provide all ids of an association in order to add or remove them.</p>\n<h3 id=\"example-1\">Example</h3>\n<p>You have a <code>Target</code> and has a currently relationship to <code>Agents</code> 1, 2, and 3. Now you wanted to also add <code>Agent</code> 4 to the <code>Target</code>. This means you can upsert only <code>Agent</code> 4 to the <code>Target</code> without needing to know the currently related <code>Agents</code>.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"1\",\n    \"type\": \"target\",\n    \"attributes\": {\n      ...\n    },\n    \"relationships\": {\n      \"agents\": {\n        \"data\": [\n          { \n            \"id\": \"4\",\n            \"type\": \"agent\" // Upsert Agent 4 to add to Target.\n          }\n        ]\n      }\n    }\n  }\n}\n\n</code></pre>\n<h3 id=\"removals-with-jsonapi\">Removals with JSONAPI</h3>\n<p>Like wise with JSONAPI payloads for <em>POST</em> and <em>PUT</em> requests we can request the removal of relationships. That means consumers of the API will no longer have to provide all ids of the remaining related <code>Agents</code>.</p>\n<h3 id=\"example-2\">Example</h3>\n<p>You have a <code>Target</code> and has a currently relationship to <code>Agents</code> 1, 2, 3, and 4. Now you wanted to remove <code>Agent</code> 4 from the <code>Target</code>. This means you can remove only <code>Agent</code> 4 to the <code>Target</code> without needing to know the all the <code>Agents</code> that should remain related.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"1\",\n    \"type\": \"target\",\n    \"attributes\": {\n      ...\n    },\n    \"relationships\": {\n      \"agents\": {\n        \"data\": [\n          { \n            \"id\": \"4\",\n            \"type\": \"agent\",\n            \"method\": \"remove\" // Add 'method' with value 'remove' to remove Agent 4.\n          }\n        ]\n      }\n    }\n  }\n}\n\n</code></pre>\n","_postman_id":"388a8feb-00f1-4541-90bf-fde9e83f151d","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"dddf07a4-5358-4b0f-8264-9ad1573a7c56","_postman_id":"dddf07a4-5358-4b0f-8264-9ad1573a7c56","description":"","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","name":"Reference","type":"folder"}}}],"id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3","description":"<p>Here you'll find reference information on the various data resources in NetBeez. Each resource will describe its attributes, attribute data types, description, and in some cases if the attribute is user defined and can be modified. We will also provide other relevant information when necessary.</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"0b1aaabc-12ef-494d-89a7-3a0ccd148aa3"},{"name":"Changelog","item":[{"name":"Version 14.0","item":[],"id":"148e11f8-b744-472c-bb75-1fecd979c883","description":"<ul>\n<li><p><strong>Agent APIs</strong></p>\n<ul>\n<li>[ADDED]<ul>\n<li>Agent index route can now be sorted by <code>open_incident</code>, such that all agents with an open incident will appear before / after agents without an incident<ul>\n<li>Within the two groups (agents with incident and agents without), the agents will be sorted by name, always ascending</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><strong>Target APIs</strong></p>\n<ul>\n<li><p>[ADDED]</p>\n<ul>\n<li><p>Target index route can now be sorted by <code>open_incident</code>, such that all targets with an open incident will appear before / after targets without an incident</p>\n<ul>\n<li>Within the two groups (targets with incident and targets without), the targets will be sorted by name, always ascending</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"148e11f8-b744-472c-bb75-1fecd979c883","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 13.0","item":[],"id":"34c997a9-dffa-4767-ac44-93cce2573239","description":"<p><em><strong>Depreciations will be removed in version</strong><strong><strong><code>15.0</code></strong></strong><strong>, please update your integrations.</strong></em></p>\n<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[DEPRECIATED]<ul>\n<li><em><code>open_incient_id</code></em> <em>will no longer be available as an</em> <em><code>Agent</code></em> <em>attribute and will instead be provided as a relationship. You can find if an</em> <em><code>Agent</code></em> <em>has an open incident via \"relationships\" -&gt; \"open_incident\".</em></li>\n<li><em><code>wifi_profile_id</code></em> <em>will no longer be available as an</em> <em><code>Agent</code></em> <em>attribute and will instead be provided as a relationship. You can find if an</em> <em><code>Agent</code></em> <em>has a</em> <em><code>WifiProfile</code></em> <em>via \"relationships\" -&gt; \"wifi_profile\" if the</em> <em><code>Agent</code></em> <em>is wireless.</em></li>\n<li><em><code>wifi_hopping_group_id</code></em> <em>will no longer be available as an</em> <em><code>Agent</code></em> <em>attribute and will instead be provided as a relationship. You can find if an</em> <em><code>Agent</code></em> <em>has an open incident via \"relationships\" -&gt; \"wifi_hopping_group\" if the</em> <em><code>Agent</code></em> <em>is wireless.</em></li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"34c997a9-dffa-4767-ac44-93cce2573239","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 12.0","item":[],"id":"fedfd1fd-2945-441a-a7c9-c75a9d4fd9ed","description":"<ul>\n<li><strong>Incident APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Incidents</em> can now be accessed with <a href=\"#request-4425180-11e2a36e-041f-4df5-b62d-cfae2f2cea2f\">GET <code>/incidents</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Scheduled Test Results</em> can be filtered by <code>last_result</code> when using <a href=\"#request-4425180-36c50947-d258-40e7-ae8b-f6e2141ed90f\">GET <code>/scheduled_nb_test_templates/:scheduled_nb_test_template_id/results</code></a> with <code>filter[last_result]</code> .</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"fedfd1fd-2945-441a-a7c9-c75a9d4fd9ed","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 11.0","item":[],"id":"2fda9e85-d4bc-4547-b918-2d5dd2d49ecd","description":"<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[ADDED]<ul>\n<li>Include <em>Alerts</em> when using <a href=\"#09ca410e-c233-4013-a4b0-c0e876dfa9a5\">GET <code>/agents/:id/logs</code></a> with <code>included[alerts]</code> parameter.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"2fda9e85-d4bc-4547-b918-2d5dd2d49ecd","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 10.2","item":[],"id":"abde6aec-1a7d-48aa-a99e-fc31d4f6eaa8","description":"<ul>\n<li><strong>Alert APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Alerts</em> can now be accessed with <a href=\"#8ad44253-684b-495e-8900-56cd5ae1a0bf\">GET <code>/alerts</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>DNS Results</em> can now be accessed with <a href=\"#8ad44253-684b-495e-8900-56cd5ae1a0bf\">GET <code>/nb_tests/dns/results</code></a> resource.</li>\n<li><em>HTTP Results</em> can now be accessed with <a href=\"#8ad44253-684b-495e-8900-56cd5ae1a0bf\">GET <code>/nb_tests/http/results</code></a> resource.</li>\n<li><em>Ping Results</em> can now be accessed with <a href=\"#8ad44253-684b-495e-8900-56cd5ae1a0bf\">GET <code>/nb_tests/ping/results</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"abde6aec-1a7d-48aa-a99e-fc31d4f6eaa8"},{"name":"Version 10.1","item":[],"id":"e5fc3a2c-2f30-4e98-9c45-368fbb3d1aaa","description":"<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[ADDED]<ul>\n<li>Filter <em>Agents</em> by <code>active_ts</code> when using <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">GET <code>/agents</code></a> with <code>filter[active_ts]</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Alert APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Alert Detectors</em> can now be accessed with <a href=\"#cdf20231-e255-4704-b86e-d3863cf00ead\">GET <code>/alert_detectors</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"e5fc3a2c-2f30-4e98-9c45-368fbb3d1aaa"},{"name":"Version 10.0","item":[],"id":"c088fe6e-8b3b-45b3-b6bf-3048300a6f77","description":"<ul>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li>A single <em>NbTests</em> can now resumed and paused when using <a href=\"#e417a7a8-c9db-42e1-8f56-8202fbdc1a16\">PUT <code>/nb_tests/:id/transition_states/:state</code></a>.</li>\n<li><em>NbTests</em> can now resumed and paused for a list of <em>Agents</em>, <em>Targets</em>, or <em>WiFi Profiles</em> when using <a href=\"#e417a7a8-c9db-42e1-8f56-8202fbdc1a16\">PUT <code>/nb_tests/transition_states/:state</code></a>.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"c088fe6e-8b3b-45b3-b6bf-3048300a6f77"},{"name":"Version 9.2","item":[],"id":"00b603e6-7067-4d1a-ba69-e8e47946d395","description":"<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Agents</em> can now be deleted using <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">DEL `/agents`</a>.</li>\n<li><em>Access Point Connections</em> can be filtered by <code>error_state</code> when using <a href=\"#977f4f35-0170-4b74-a9d5-0dd25a5a5000\">GET <code>/agents/:agent_id/access_point_connections</code></a> with <code>filter[error_states]</code> .</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"00b603e6-7067-4d1a-ba69-e8e47946d395"},{"name":"Version 9.0","item":[],"id":"5d84ecc9-64c9-4327-a273-9c341ffdb25a","description":"<p><em><strong>Depreciations will be removed in</strong></em> <em><strong><code>12.0</code></strong>__<strong>, please use renamed filters.</strong></em></p>\n<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[DEPRECATED]<ul>\n<li>When using <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">GET <code>/agents</code></a>, <code>filter[status]</code> has been renamed to <code>filter[active]</code>.</li>\n<li>When using <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">GET <code>/agents</code></a>, <code>filter[agent_class]</code> has been renamed to <code>filter[agent_classes]</code>.</li>\n<li>When using <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">GET <code>/agents</code></a>, <code>filter[category]</code> has been renamed to <code>filter[categories].</code></li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Report APIs</strong><ul>\n<li>[DEPRECATED]<ul>\n<li>When using <a href=\"#2b2dbecb-43de-4a15-9467-08e96c3c748a\">GET <code>/generated_reports</code></a>, <code>filter[report_type]</code> has been renamed to <code>filter[report_types]</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>NbTests</em> can now be accessed with <a href=\"#folder-f0e65e29-1638-4e7e-885b-c5a260d46ef6\">/nb_tests</a> resource.</li>\n</ul>\n</li>\n<li>[DEPRECATED]<ul>\n<li>When using <a href=\"#b48585af-ddff-422e-9b52-af1b75399631\">GET <code>/scheduled_nb_test_templates</code></a>, <code>filter[test_type_id]</code> has been renamed to <code>filter[test_types]</code>.</li>\n<li>When using <a href=\"#75523d97-4591-41fd-97a5-c8352d80740b\">GET <code>/nb_tests/traceroutes/results</code></a>, <code>filter[nb_test_templates]</code> has been renamed to <code>filter[test_templates]</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"5d84ecc9-64c9-4327-a273-9c341ffdb25a","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 8.0","item":[],"id":"0ffdbd5d-36f8-44e5-86d1-8cfa3a20aee7","description":"<ul>\n<li><strong>TEST APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Path Analysis Results</em> can now be accessed with <a href=\"#b130d31c-488d-44b5-9efa-f32694d39b63\">GET <code>/nb_tests/path_analysis/results</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"0ffdbd5d-36f8-44e5-86d1-8cfa3a20aee7","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 7.2","item":[],"id":"185f5506-63cf-401b-bca0-f5b6b9db7051","description":"<ul>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Traceroute Results</em> can now be accessed with <a href=\"#75523d97-4591-41fd-97a5-c8352d80740b\">GET <code>/nb_tests/traceroutes/results</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"185f5506-63cf-401b-bca0-f5b6b9db7051","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 7.0","item":[],"id":"0d1c8eea-4b3d-4de0-a779-53ae97cef9cb","description":"<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Agents</em> can now be accessed with <a href=\"#4e9cf83e-805a-49e7-bc4e-56e31c064a6d\">GET <code>/agents</code></a> resource.</li>\n<li><em>Agent Groups</em> can now be accessed with <a href=\"#72f8008d-9140-4416-adee-d097d56cb07c\">GET <code>/agent_groups</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"0d1c8eea-4b3d-4de0-a779-53ae97cef9cb","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 5.0","item":[],"id":"9611c75c-dc52-4abe-88f3-03e4dc271573","description":"<ul>\n<li><strong>Report APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Generated Reports</em> can now be accessed with <a href=\"#2b2dbecb-43de-4a15-9467-08e96c3c748a\">GET <code>/reports/generated_reports</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>Test APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Scheduled Test Results</em> can now be accessed with <a href=\"#6284ccf0-f48b-437c-92c9-10a3374184ac\">GET <code>/scheduled_nb_test_templates/:id/results</code></a> resource.</li>\n<li><em>Scheduled Test Result Statistics</em> can now be accessed with <a href=\"#01a9804d-356a-4687-b64e-6579f78fab36\">GET <code>/scheduled_nb_test_templates/:id/results/statistics</code></a> resource.</li>\n<li><em>Scheduled Test Templates</em> can now be accessed with <a href=\"#b48585af-ddff-422e-9b52-af1b75399631\">GET <code>/scheduled_nb_test_templates</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><strong>WiFi APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>WiFi Profiles</em> can now be accessed with <a href=\"#9c7f897b-1dfb-459d-9d9d-954671187973\">GET <code>/wifi_profiles</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"9611c75c-dc52-4abe-88f3-03e4dc271573","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Version 4.0","item":[],"id":"171597b4-70d6-4f97-aa02-999916c75a9b","description":"<ul>\n<li><strong>Agent APIs</strong><ul>\n<li>[ADDED]<ul>\n<li><em>Agent Logs</em> can now be accessed with <a href=\"#09ca410e-c233-4013-a4b0-c0e876dfa9a5\">GET <code>/agents/:id/logs</code></a> resource.</li>\n<li><em>Access Point Connections</em> can now be accessed with <a href=\"#977f4f35-0170-4b74-a9d5-0dd25a5a5000\">GET <code>/agents/:agent_id/access_point_connections</code></a> resource.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"171597b4-70d6-4f97-aa02-999916c75a9b","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}},{"name":"Depreciation Notice for V1","item":[],"id":"edd224ff-68ed-4191-bd1a-f4cc37884e30","description":"<p>As of 4.0, the V1 version of our API is deprecated. The V1 version will continue to receive support for bug fixes but will not receive any further enhancements. This is to allow us to focus our efforts on expanding our new API offering to our customers introduced in 4.0. The V1 version will continue to exist until we have released comparable functionality through our new API. During this time customers who have deployed public dashboards will not notice any changes in functionality and they will continue to work as expected.</p>\n","_postman_id":"edd224ff-68ed-4191-bd1a-f4cc37884e30","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","name":"Changelog","type":"folder"}}}],"id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd","description":"<p>The Changelog details changes made to NetBeez API functionality. Changes for each version of NetBeez can be found below.</p>\n","auth":{"type":"noauth","isInherited":false},"_postman_id":"ab987a8f-1301-43a3-8a23-5a38388f6bbd"}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"[API_KEY]"}]}},"event":[{"listen":"prerequest","script":{"id":"dd2023e4-9248-4924-98d8-68398857f066","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"be070534-b528-4047-b0bb-81e27b7939ae","type":"text/javascript","exec":[""]}}],"variable":[{"key":"HOSTNAME","value":"[HOSTNAME]"},{"key":"API_KEY","value":"[API_KEY]"}]}