{
	"info": {
		"_postman_id": "9cf75950-11f0-4686-bc61-e86839d54679",
		"name": "Cloud Service",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "37314606"
	},
	"item": [
		{
			"name": "Activation",
			"item": [
				{
					"name": "Status - Get activation status",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/status",
							"host": [
								"{{url}}"
							],
							"path": [
								"status"
							]
						}
					},
					"response": []
				},
				{
					"name": "Status - Activate configuration changes",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/status/activate",
							"host": [
								"{{url}}"
							],
							"path": [
								"status",
								"activate"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Admin Audit Logs",
			"item": [
				{
					"name": "Admin Audit Logs (advanced) - Request all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by actions",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"actionTypes\":[\"CREATE\",\"DELETE\"]\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by category",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"category\":\"USER_MANAGEMENT\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by sub-categories",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"subcategories\":[\"DEPARTMENT\",\"USER\"]\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by interface",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"actionInterface\":\"API\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by result",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"actionResult\":\"FAILURE\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by resource",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"objectName\":\"test\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by admin ID",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"adminName\":\"read-only\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Filter by client IP",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"startTime\":1577840401000,\n   \"endTime\":1583024401000,\n   \"page\":1,\n   \"pageSize\":100,\n   \"clientIP\":\"101.12.13.14\"\n}"
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Get status",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Get report",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/auditlogEntryReport/download",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport",
								"download"
							]
						}
					},
					"response": []
				},
				{
					"name": "Admin Audit Logs (advanced) - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/auditlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"auditlogEntryReport"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Admin & Role Management",
			"item": [
				{
					"name": "Admin Roles",
					"item": [
						{
							"name": "Admin Roles  - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/adminRoles/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminRoles",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Roles  - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/adminRoles/122641",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminRoles",
										"122641"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Roles  - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"rank\": 7,\r\n    \"name\": \"Add Role\",\r\n    \"alertingAccess\": \"READ_WRITE\",\r\n    \"dashboardAccess\": \"READ_WRITE\",\r\n    \"reportAccess\": \"READ_WRITE\",\r\n    \"analysisAccess\": \"READ_ONLY\",\r\n    \"usernameAccess\": \"READ_ONLY\",\r\n    \"deviceInfoAccess\": \"READ_ONLY\",\r\n    \"featurePermissions\": {\r\n        \"MICROSOFT_CLOUD_APP_SECURITY\": \"READ_WRITE\",\r\n        \"INCIDENT_WORKFLOW\": \"READ_WRITE\",\r\n        \"SSL_POLICY\": \"READ_WRITE\",\r\n        \"FORWARDING_CONTROL\": \"READ_WRITE\",\r\n        \"DLP_INCIDENT_RECEIVER\": \"READ_WRITE\",\r\n        \"USER_MANAGEMENT\": \"READ_WRITE\",\r\n        \"AUTHENTICATION_SETTINGS\": \"READ_WRITE\",\r\n        \"IDENTITY_PROXY_SETTINGS\": \"READ_WRITE\",\r\n        \"TIME_INTERVALS\": \"READ_WRITE\",\r\n        \"SD_WAN\": \"READ_WRITE\",\r\n        \"FTP_CONTROL\": \"READ_WRITE\",\r\n        \"INTERMEDIATE_CA_CERTIFICATES\": \"READ_WRITE\",\r\n        \"ALERTS_CONFIGURATION\": \"READ_WRITE\",\r\n        \"INLINE_DLP\": \"READ_WRITE\",\r\n        \"REPORTING_DLP\": \"READ_ONLY\",\r\n        \"ADVANCED_SETTINGS\": \"READ_WRITE\",\r\n        \"BACKUP\": \"READ_WRITE\",\r\n        \"CLIENT_CONNECTOR_PORTAL\": \"READ_WRITE\",\r\n        \"CLOUD_SANDBOX\": \"READ_WRITE\",\r\n        \"BANDWIDTH_CONTROL\": \"READ_WRITE\",\r\n        \"DLP_NOTIFICATION_TEMPLATES\": \"READ_WRITE\",\r\n        \"MOBILE_MALWARE_PROTECTION\": \"READ_WRITE\",\r\n        \"STATIC_IPS\": \"READ_WRITE\",\r\n        \"THIRD_PARTY_SSL_ROOT_CERTS\": \"READ_WRITE\",\r\n        \"NSS_CONFIGURATION\": \"READ_WRITE\",\r\n        \"LOCATIONS\": \"READ_WRITE\",\r\n        \"BANDWIDTH_CLASSES\": \"READ_WRITE\",\r\n        \"GRE_TUNNELS\": \"READ_WRITE\",\r\n        \"REPORTING_SECURITY\": \"READ_ONLY\",\r\n        \"DEVICE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"ADMINISTRATOR_MANAGEMENT\": \"READ_WRITE\",\r\n        \"ZIA_TRAFFIC_CAPTURE\": \"READ_WRITE\",\r\n        \"REPORTING_FIREWALL\": \"READ_ONLY\",\r\n        \"ZS_DEFINED_URL_CATEGORY_MGMT\": \"READ_WRITE\",\r\n        \"VZEN_CONFIGURATION\": \"READ_WRITE\",\r\n        \"URL_CLOUD_APP_CONTROL\": \"READ_WRITE\",\r\n        \"IP_FQDN_GROUPS\": \"READ_WRITE\",\r\n        \"REPORTING_URL_CATEGORIES\": \"READ_ONLY\",\r\n        \"POLICY_RESOURCE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"SAAS_SECURITY_POSTURE_MGMT\": \"READ_WRITE\",\r\n        \"END_POINT_DLP\": \"READ_WRITE\",\r\n        \"AUDIT_LOGS\": \"READ_WRITE\",\r\n        \"RESTORE\": \"READ_WRITE\",\r\n        \"SUBCLOUDS\": \"READ_WRITE\",\r\n        \"OVERRIDE_EXISTING_CAT\": \"READ_WRITE\",\r\n        \"DNS_CONTROL\": \"READ_WRITE\",\r\n        \"SAAS_APPLICATION_TENANTS\": \"READ_WRITE\",\r\n        \"ROLE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"FILE_TYPE_CONTROL\": \"READ_WRITE\",\r\n        \"MICROSOFT_DEFENDER_FOR_ENDPOINT\": \"READ_WRITE\",\r\n        \"CROWDSTRIKE\": \"READ_WRITE\",\r\n        \"PROXY_GATEWAY\": \"READ_WRITE\",\r\n        \"SAAS_SECURITY_API\": \"READ_WRITE\",\r\n        \"MALWARE_PROTECTION\": \"READ_WRITE\",\r\n        \"CUSTOM_URL_CAT\": \"READ_WRITE\",\r\n        \"TENANT_PROFILE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"REPORTING_WEB_DATA\": \"READ_ONLY\",\r\n        \"NAT_CONTROL\": \"READ_WRITE\",\r\n        \"APIKEY_MANAGEMENT\": \"READ_WRITE\",\r\n        \"BROWSER_ISOLATION\": \"READ_WRITE\",\r\n        \"REMOTE_ASSISTANCE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"VPN_CREDENTIALS\": \"READ_WRITE\",\r\n        \"FIREWALL_CONTROL\": \"READ_WRITE\",\r\n        \"IPS_CONTROL\": \"READ_WRITE\",\r\n        \"AZURE_VIRTUAL_WAN\": \"READ_WRITE\",\r\n        \"HOSTED_PAC_FILES\": \"READ_WRITE\",\r\n        \"REPORTING_IOT\": \"READ_ONLY\",\r\n        \"SECURE_BROWSING\": \"READ_WRITE\",\r\n        \"DLP_DICTIONARIES_ENGINES\": \"READ_WRITE\",\r\n        \"ADVANCED_THREAT_PROTECTION\": \"READ_WRITE\",\r\n        \"MOBILE_APP_STORE_CONTROL\": \"READ_WRITE\"\r\n    },\r\n    \"extFeaturePermissions\": {},\r\n    \"logsLimit\": \"UNRESTRICTED\",\r\n    \"roleType\": \"ORG_ADMIN\",\r\n    \"reportTimeDuration\": -1\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/adminRoles",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminRoles"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Roles - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"id\": 3847,\r\n    \"rank\": 7,\r\n    \"name\": \"update Role\",\r\n    \"alertingAccess\": \"READ_WRITE\",\r\n    \"dashboardAccess\": \"READ_WRITE\",\r\n    \"reportAccess\": \"READ_WRITE\",\r\n    \"analysisAccess\": \"READ_ONLY\",\r\n    \"usernameAccess\": \"READ_ONLY\",\r\n    \"deviceInfoAccess\": \"READ_ONLY\",\r\n    \"featurePermissions\": {\r\n        \"AZURE_VIRTUAL_WAN\": \"READ_WRITE\",\r\n        \"IP_FQDN_GROUPS\": \"READ_WRITE\",\r\n        \"OVERRIDE_EXISTING_CAT\": \"READ_WRITE\",\r\n        \"FTP_CONTROL\": \"READ_WRITE\",\r\n        \"NSS_CONFIGURATION\": \"READ_WRITE\",\r\n        \"REPORTING_FIREWALL\": \"READ_ONLY\",\r\n        \"STATIC_IPS\": \"READ_WRITE\",\r\n        \"MALWARE_PROTECTION\": \"READ_WRITE\",\r\n        \"IDENTITY_PROXY_SETTINGS\": \"READ_WRITE\",\r\n        \"INLINE_DLP\": \"READ_WRITE\",\r\n        \"HOSTED_PAC_FILES\": \"READ_WRITE\",\r\n        \"VZEN_CONFIGURATION\": \"READ_WRITE\",\r\n        \"END_POINT_DLP\": \"READ_WRITE\",\r\n        \"TIME_INTERVALS\": \"READ_WRITE\",\r\n        \"LOCATIONS\": \"READ_WRITE\",\r\n        \"ADVANCED_SETTINGS\": \"READ_WRITE\",\r\n        \"RESTORE\": \"READ_WRITE\",\r\n        \"BANDWIDTH_CLASSES\": \"READ_WRITE\",\r\n        \"SAAS_APPLICATION_TENANTS\": \"READ_WRITE\",\r\n        \"REPORTING_WEB_DATA\": \"READ_ONLY\",\r\n        \"BANDWIDTH_CONTROL\": \"READ_WRITE\",\r\n        \"ALERTS_CONFIGURATION\": \"READ_WRITE\",\r\n        \"ZIA_TRAFFIC_CAPTURE\": \"READ_WRITE\",\r\n        \"REPORTING_IOT\": \"READ_ONLY\",\r\n        \"THIRD_PARTY_SSL_ROOT_CERTS\": \"READ_WRITE\",\r\n        \"MOBILE_APP_STORE_CONTROL\": \"READ_WRITE\",\r\n        \"CROWDSTRIKE\": \"READ_WRITE\",\r\n        \"FIREWALL_CONTROL\": \"READ_WRITE\",\r\n        \"DLP_DICTIONARIES_ENGINES\": \"READ_WRITE\",\r\n        \"ADVANCED_THREAT_PROTECTION\": \"READ_WRITE\",\r\n        \"IPS_CONTROL\": \"READ_WRITE\",\r\n        \"DLP_INCIDENT_RECEIVER\": \"READ_WRITE\",\r\n        \"AUDIT_LOGS\": \"READ_WRITE\",\r\n        \"SSL_POLICY\": \"READ_WRITE\",\r\n        \"MICROSOFT_DEFENDER_FOR_ENDPOINT\": \"READ_WRITE\",\r\n        \"SAAS_SECURITY_API\": \"READ_WRITE\",\r\n        \"APIKEY_MANAGEMENT\": \"READ_WRITE\",\r\n        \"REPORTING_DLP\": \"READ_ONLY\",\r\n        \"BROWSER_ISOLATION\": \"READ_WRITE\",\r\n        \"CLIENT_CONNECTOR_PORTAL\": \"READ_WRITE\",\r\n        \"FORWARDING_CONTROL\": \"READ_WRITE\",\r\n        \"CUSTOM_URL_CAT\": \"READ_WRITE\",\r\n        \"TENANT_PROFILE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"NAT_CONTROL\": \"READ_WRITE\",\r\n        \"BACKUP\": \"READ_WRITE\",\r\n        \"AUTHENTICATION_SETTINGS\": \"READ_WRITE\",\r\n        \"FILE_TYPE_CONTROL\": \"READ_WRITE\",\r\n        \"SD_WAN\": \"READ_WRITE\",\r\n        \"DEVICE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"INCIDENT_WORKFLOW\": \"READ_WRITE\",\r\n        \"GRE_TUNNELS\": \"READ_WRITE\",\r\n        \"VPN_CREDENTIALS\": \"READ_WRITE\",\r\n        \"MICROSOFT_CLOUD_APP_SECURITY\": \"READ_WRITE\",\r\n        \"INTERMEDIATE_CA_CERTIFICATES\": \"READ_WRITE\",\r\n        \"ADMINISTRATOR_MANAGEMENT\": \"READ_WRITE\",\r\n        \"REPORTING_SECURITY\": \"READ_ONLY\",\r\n        \"SECURE_BROWSING\": \"READ_WRITE\",\r\n        \"ZS_DEFINED_URL_CATEGORY_MGMT\": \"READ_WRITE\",\r\n        \"SAAS_SECURITY_POSTURE_MGMT\": \"READ_WRITE\",\r\n        \"URL_CLOUD_APP_CONTROL\": \"READ_WRITE\",\r\n        \"REMOTE_ASSISTANCE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"POLICY_RESOURCE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"SUBCLOUDS\": \"READ_WRITE\",\r\n        \"CLOUD_SANDBOX\": \"READ_WRITE\",\r\n        \"REPORTING_URL_CATEGORIES\": \"READ_ONLY\",\r\n        \"DLP_NOTIFICATION_TEMPLATES\": \"READ_WRITE\",\r\n        \"DNS_CONTROL\": \"READ_WRITE\",\r\n        \"MOBILE_MALWARE_PROTECTION\": \"READ_WRITE\",\r\n        \"USER_MANAGEMENT\": \"READ_WRITE\",\r\n        \"ROLE_MANAGEMENT\": \"READ_WRITE\",\r\n        \"PROXY_GATEWAY\": \"READ_WRITE\"\r\n    },\r\n    \"extFeaturePermissions\": {},\r\n    \"logsLimit\": \"UNRESTRICTED\",\r\n    \"roleType\": \"ORG_ADMIN\",\r\n    \"reportTimeDuration\": -1\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/adminRoles/3847",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminRoles",
										"3847"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Roles - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/adminRoles/3847",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminRoles",
										"3847"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Admin Users",
					"item": [
						{
							"name": "Admin User  - Get me",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/adminUsers/me",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminUsers",
										"me"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Users - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "    {\n        \"loginName\": \"johnsmith@acme.com\",\n        \"userName\": \"John Smith\",\n        \"email\": \"johnsmith@acme.com\",\n        \"role\": {\n\t        \"id\": 2322\n    \t},\n    \t\"password\": \"AeQ9E5w8B$\",\n        \"rank\": 7,\n        \"name\": \"Read only\",\n        \"policyAccess\": \"READ_ONLY\",\n        \"dashboardAccess\": \"READ_WRITE\",\n        \"reportAccess\": \"READ_WRITE\",\n        \"analysisAccess\": \"READ_ONLY\",\n        \"usernameAccess\": \"READ_ONLY\",\n        \"adminAcctAccess\": \"NONE\",\n        \"permissions\": [\n            \"CUSTOM_URL_CAT\",\n            \"ADVANCED_SETTINGS\",\n            \"COMPLY\",\n            \"FIREWALL_DNS\",\n            \"SECURE\",\n            \"SSL_POLICY\",\n            \"VZEN_CONFIGURATION\",\n            \"PARTNER_INTEGRATION\",\n            \"LOCATIONS\",\n            \"VPN_CREDENTIALS\",\n            \"HOSTED_PAC_FILES\",\n            \"EZ_AGENT_CONFIGURATIONS\",\n            \"SECURE_AGENT_NOTIFICATIONS\",\n            \"AUTHENTICATION_SETTINGS\",\n            \"USER_MANAGEMENT\",\n            \"IDENTITY_PROXY_SETTINGS\",\n            \"APIKEY_MANAGEMENT\",\n            \"OVERRIDE_EXISTING_CAT\",\n            \"REMOTE_ASSISTANCE_MANAGEMENT\"\n        ],\n        \"logsLimit\": \"UNRESTRICTED\",\n        \"roleType\": \"ORG_ADMIN\"\n    }"
								},
								"url": {
									"raw": "{{url}}/adminUsers",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminUsers"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Users - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "    {\n        \"loginName\": \"johnsmith@acme.com\",\n        \"userName\": \"John Smith\",\n        \"email\": \"johnsmith@acme.com\",\n        \"role\": {\n\t        \"id\": 2322\n    \t},\n    \t\"password\": \"AeQ9E5w8B$\",\n        \"rank\": 7,\n        \"name\": \"Read only\",\n        \"policyAccess\": \"READ_ONLY\",\n        \"dashboardAccess\": \"READ_WRITE\",\n        \"reportAccess\": \"READ_WRITE\",\n        \"analysisAccess\": \"READ_ONLY\",\n        \"usernameAccess\": \"READ_ONLY\",\n        \"adminAcctAccess\": \"NONE\",\n        \"permissions\": [\n            \"CUSTOM_URL_CAT\",\n            \"ADVANCED_SETTINGS\",\n            \"COMPLY\",\n            \"FIREWALL_DNS\",\n            \"SECURE\"\n        ],\n        \"logsLimit\": \"UNRESTRICTED\",\n        \"roleType\": \"ORG_ADMIN\"\n    }"
								},
								"url": {
									"raw": "{{url}}/adminUsers/6794036",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminUsers",
										"6794036"
									]
								}
							},
							"response": []
						},
						{
							"name": "Admin Users - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/adminUsers/6794036",
									"host": [
										"{{url}}"
									],
									"path": [
										"adminUsers",
										"6794036"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Password Expiry",
					"item": [
						{
							"name": "Password Expiry - Get all",
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/passwordExpiry/settings",
									"host": [
										"{{url}}"
									],
									"path": [
										"passwordExpiry",
										"settings"
									]
								}
							},
							"response": []
						},
						{
							"name": "Password Expiry - Update",
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"passwordExpirationEnabled\": false,\n    \"passwordExpiryDays\": 180\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/passwordExpiry/settings",
									"host": [
										"{{url}}"
									],
									"path": [
										"passwordExpiry",
										"settings"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Advanced Settings",
			"item": [
				{
					"name": "Advanced Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/advancedSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"advancedSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Settings - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"enablePolicyForUnauthenticatedTraffic\": true,\r\n    \"digestAuthBypassUrls\": [\r\n        \r\n    ],\r\n    \"dnsResolutionOnTransparentProxyExemptUrlCategories\": [\r\n        \"SEXUALITY\"\r\n    ],\r\n    \"enableIPv6DnsResolutionOnTransparentProxy\": true,\r\n    \"enableIPv6DnsOptimizationOnAllTransparentProxy\": true,\r\n    \"sipaXffHeaderEnabled\": true,\r\n    \"trackHttpTunnelOnHttpPorts\": true,\r\n    \"dnsResolutionOnTransparentProxyExemptUrls\": [\r\n        \"www.Automationvmfzjg.com\"\r\n    ],\r\n    \"http2NonbrowserTrafficEnabled\": false,\r\n    \"preferSniOverConnHost\": true,\r\n    \"cascadeUrlFiltering\": true,\r\n    \"enableAdminRankAccess\": true,\r\n    \"authBypassUrls\": [\r\n        \"www.Automationvmfzjg.com\"\r\n    ],\r\n    \"basicBypassApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"httpRangeHeaderRemoveUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"kerberosBypassUrlCategories\": [\r\n        \"ADULT_SEX_EDUCATION\"\r\n    ],\r\n    \"blockNonCompliantHttpRequestOnHttpPorts\": true,\r\n    \"digestAuthBypassApps\": [\r\n        \r\n    ],\r\n    \"blockHttpTunnelOnNonHttpPorts\": true,\r\n    \"sniDnsOptimizationBypassUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"dnsResolutionOnTransparentProxyIPv6Apps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"zscalerClientConnector1AndPacRoadWarriorInFirewall\": true,\r\n    \"domainFrontingBypassUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"dnsResolutionOnTransparentProxyUrls\": [\r\n        \r\n    ],\r\n    \"blockNonHttpOnHttpPortEnabled\": true,\r\n    \"enableEvaluatePolicyOnGlobalSSLBypass\": true,\r\n    \"authBypassUrlCategories\": [\r\n        \"ADULT_SEX_EDUCATION\"\r\n    ],\r\n    \"authBypassApps\": [\r\n        \r\n    ],\r\n    \"dynamicUserRiskEnabled\": false,\r\n    \"blockConnectHostSniMismatch\": true,\r\n    \"dnsResolutionOnTransparentProxyIPv6ExemptUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"enforceSurrogateIpForWindowsApp\": true,\r\n    \"enableDnsResolutionOnTransparentProxy\": true,\r\n    \"dnsResolutionOnTransparentProxyExemptApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"dnsResolutionOnTransparentProxyIPv6UrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"uiSessionTimeout\": 36000,\r\n    \"dnsResolutionOnTransparentProxyUrlCategories\": [\r\n        \"ADULT_SEX_EDUCATION\"\r\n    ],\r\n    \"blockDomainFrontingOnHostHeader\": true,\r\n    \"digestAuthBypassUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"logInternalIp\": true,\r\n    \"kerberosBypassUrls\": [\r\n        \"www.Automationvmfzjg.com\"\r\n    ],\r\n    \"dnsResolutionOnTransparentProxyIPv6ExemptApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"enableOffice365\": false,\r\n    \"preferSniOverConnHostApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"blockDomainFrontingApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"dnsResolutionOnTransparentProxyApps\": [\r\n        \"NONE\"\r\n    ],\r\n    \"basicBypassUrlCategories\": [\r\n        \"NONE\"\r\n    ],\r\n    \"ecsForAllEnabled\": false,\r\n    \"kerberosBypassApps\": [\r\n        \r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/advancedSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"advancedSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Advanced Threat Protection Policy",
			"item": [
				{
					"name": "Advanced Threat Protection - Get policy settings",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/advancedThreatSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"advancedThreatSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Threat Protection - Update policy settings",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"blockCountriesCapture\": true,\n    \"bitTorrentBlocked\": true,\n    \"alertForUnknownOrSuspiciousC2Traffic\": false,\n    \"ircTunnellingCapture\": true,\n    \"sshTunnellingCapture\": false,\n    \"adSpywareSitesBlocked\": false,\n    \"fileFormatVunerabilitesCapture\": true,\n    \"googleTalkBlocked\": true,\n    \"activeXBlocked\": true,\n    \"knownPhishingSitesCapture\": true,\n    \"dgaDomainsBlocked\": false,\n    \"cryptoMiningCapture\": false,\n    \"suspectedPhishingSitesCapture\": true,\n    \"browserExploitsBlocked\": true,\n    \"torCapture\": true,\n    \"malwareSitesCapture\": true,\n    \"blockedCountries\": [\n        \"COUNTRY_AF\",\n        \"COUNTRY_AX\"\n    ],\n    \"suspectAdwareSpywareSitesCapture\": true,\n    \"cryptoMiningBlocked\": false,\n    \"suspectAdwareSpywareSitesBlocked\": true,\n    \"cookieStealingPCAPEnabled\": true,\n    \"googleTalkCapture\": true,\n    \"riskTolerance\": \"0\",\n    \"malwareSitesBlocked\": true,\n    \"anonymizerBlocked\": true,\n    \"bitTorrentCapture\": true,\n    \"ircTunnellingBlocked\": true,\n    \"cookieStealingBlocked\": true,\n    \"knownPhishingSitesBlocked\": true,\n    \"webspamBlocked\": true,\n    \"cmdCtlServerBlocked\": true,\n    \"sshTunnellingBlocked\": false,\n    \"potentialMaliciousRequestsBlocked\": true,\n    \"maliciousUrlsCapture\": false,\n    \"riskToleranceCapture\": true,\n    \"anonymizerCapture\": true,\n    \"cmdCtlTrafficCapture\": true,\n    \"cmdCtlTrafficBlocked\": true,\n    \"cmdCtlServerCapture\": true,\n    \"fileFormatVunerabilitesBlocked\": true,\n    \"webspamCapture\": true,\n    \"adSpywareSitesCapture\": false,\n    \"suspectedPhishingSitesBlocked\": true,\n    \"dgaDomainsCapture\": false,\n    \"activeXCapture\": true,\n    \"browserExploitsCapture\": true,\n    \"torBlocked\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/advancedThreatSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"advancedThreatSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Threat Protection - Get denylist URLs",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/maliciousUrls",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"maliciousUrls"
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Threat Protection - Update denylist URLs",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"maliciousUrls\": [\n        \"tinder.com\",\n        \".snapchat.c\",\n        \"facebook1.com\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/maliciousUrls?action=ADD_TO_LIST",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"maliciousUrls"
							],
							"query": [
								{
									"key": "action",
									"value": "ADD_TO_LIST"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Threat Protection - Get security exceptions",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/securityExceptions",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"securityExceptions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Advanced Threat Protection - Update security exceptions",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"bypassUrls\": [\n        \"asd.com\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/securityExceptions",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"securityExceptions"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Alerts",
			"item": [
				{
					"name": "Alert Subscriptions - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/alertSubscriptions",
							"host": [
								"{{url}}"
							],
							"path": [
								"alertSubscriptions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Alert Subscriptions - Get by id",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/alertSubscriptions/404",
							"host": [
								"{{url}}"
							],
							"path": [
								"alertSubscriptions",
								"404"
							]
						}
					},
					"response": []
				},
				{
					"name": "Alert Subscriptions - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": 404,\n    \"email\": \"test@add.com\",\n    \"pt0Severities\": [\n        \"CRITICAL\"\n    ],\n    \"secureSeverities\": [\n        \"CRITICAL\"\n    ],\n    \"manageSeverities\": [\n        \"CRITICAL\"\n    ],\n    \"complySeverities\": [\n        \"CRITICAL\"\n    ],\n    \"systemSeverities\": [\n        \"CRITICAL\"\n    ],\n    \"deleted\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/alertSubscriptions",
							"host": [
								"{{url}}"
							],
							"path": [
								"alertSubscriptions"
							]
						}
					},
					"response": []
				},
				{
					"name": "Alert Subscriptions - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 405,\r\n    \"email\": \"test@add.com\",\r\n    \"pt0Severities\": [\r\n        \"CRITICAL\"\r\n    ],\r\n    \"secureSeverities\": [\r\n        \"CRITICAL\"\r\n    ],\r\n    \"manageSeverities\": [\r\n        \"CRITICAL\"\r\n    ],\r\n    \"complySeverities\": [\r\n        \"CRITICAL\"\r\n    ],\r\n    \"systemSeverities\": [\r\n        \"CRITICAL\"\r\n    ],\r\n    \"deleted\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/alertSubscriptions/405",
							"host": [
								"{{url}}"
							],
							"path": [
								"alertSubscriptions",
								"405"
							]
						}
					},
					"response": []
				},
				{
					"name": "Alert Subscriptions - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/alertSubscriptions/405",
							"host": [
								"{{url}}"
							],
							"path": [
								"alertSubscriptions",
								"405"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "API Authentication",
			"item": [
				{
					"name": "Authenticate - Check for authenticated session",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/authenticatedSession",
							"host": [
								"{{url}}"
							],
							"path": [
								"authenticatedSession"
							]
						}
					},
					"response": []
				},
				{
					"name": "Authenticate - Create authenticated session",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									"var timestamp = Date.now().toString();",
									"postman.setEnvironmentVariable(\"timestamp\", timestamp);",
									"// Copy API key from Admin Portal on 'Administration - API Key Management' or 'Administration - Partner Integrations' ",
									"// (depending on type of access)",
									"postman.setEnvironmentVariable(\"apikey\", obfuscateApiKey('YourApiKey', timestamp));",
									"",
									"function obfuscateApiKey(apiKey, timestamp) {",
									"       ",
									"    var high = timestamp.substring(timestamp.length - 6);",
									"    var low = (parseInt(high) >> 1).toString();",
									"    var obfuscatedApiKey = '';",
									"",
									"    while (low.length < 6) {",
									"        low = '0' + low;",
									"    }",
									"",
									"    for (var i = 0; i < high.length; i++) {",
									"        obfuscatedApiKey += apiKey.charAt(parseInt(high.charAt(i)));",
									"    }",
									"",
									"    for (var j = 0; j < low.length; j++) {",
									"        obfuscatedApiKey += apiKey.charAt(parseInt(low.charAt(j)) + 2);",
									"    }",
									"",
									"    return \"\\\"\"+obfuscatedApiKey+\"\\\"\";",
									"}"
								],
								"type": "text/javascript",
								"packages": {}
							}
						},
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Server",
								"value": "Zscaler"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"username\":\"admin@yourcompany.com\",\"password\":\"Yourpassword\",\"apiKey\":{{apikey}},\"timestamp\":{{timestamp}}}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/authenticatedSession",
							"host": [
								"{{url}}"
							],
							"path": [
								"authenticatedSession"
							]
						},
						"description": "Generated from cURL: curl --location '/authenticatedSession' \\\n--header 'Content-Type: application/json' \\\n--header 'Server: Zscaler' \\\n--data-raw '{\"username\":\"admin@yourcompany.com\",\"password\":\"Yourpassword\",\"apiKey\":,\"timestamp\":}'"
					},
					"response": []
				},
				{
					"name": "Authenticate - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/authenticatedSession",
							"host": [
								"{{url}}"
							],
							"path": [
								"authenticatedSession"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Authentication Settings",
			"item": [
				{
					"name": "Authentication Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/datacenters",
							"host": [
								"{{url}}"
							],
							"path": [
								"datacenters"
							]
						}
					},
					"response": []
				},
				{
					"name": "Authentication Settings - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/authSettings/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"authSettings",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "Authentication Settings - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"passwordStrength\": \"NONE\",\r\n    \"autoProvision\": \"false\",\r\n    \"passwordExpiry\": \"NEVER\",\r\n    \"directorySyncMigrateToScimEnabled\": \"false\",\r\n    \"authFrequency\": \"PERMANENT_COOKIE\",\r\n    \"orgAuthType\": \"SAFECHANNEL_DIR\",\r\n    \"oneTimeAuth\": \"OTP_DISABLED\",\r\n    \"kerberosEnabled\": \"false\",\r\n    \"samlEnabled\": \"false\",\r\n    \"mobileAdminSamlIdpEnabled\": \"false\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/authSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"authSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Bandwidth Control and Classes",
			"item": [
				{
					"name": "Bandwidth Classes",
					"item": [
						{
							"name": "Bandwidth Classes - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthClasses",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Classes - Get lite",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthClasses/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Classes - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthClasses/11",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses",
										"11"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Classes - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\"name\":\"test payload\",\"urls\":[\"admin.domaintest.com\"],\"urlCategories\":[\"SEXUALITY\"],\"webApplications\":[\"ONE_WORDFLOW\"]}\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthClasses",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Classes - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 11,\n    \"isNameL10nTag\": true,\n    \"name\": \"you name\",\n    \"webApplications\": [\n        \"NVIDIA_CLARA_TRAIN_BUSINESS\",\n        \"CORDIAL_SAS_SYSDEV\",\n        \"CHATGPT_AI\",\n        \"ANDI\",\n        \"CHARACTER_AI\",\n        \"CHATSONIC\",\n        \"DALL_E\",\n        \"DEEP_DREAM_GENERATOR\",\n        \"GANPAINT\",\n        \"JASPER\",\n        \"MIDJOURNEY\",\n        \"NEURAL_BLENDER\",\n        \"OPENAI\",\n        \"RUNWAY\",\n        \"SYNTHESIA\",\n        \"WRITESONIC\",\n        \"ALPACAML\",\n        \"PRISMA_AI\"\n    ],\n    \"urls\": [\n        \"www.ll.com\"\n    ],\n    \"urlCategories\": [\n        \"OTHER_ADULT_MATERIAL\",\n        \"ADULT_THEMES\",\n        \"LINGERIE_BIKINI\",\n        \"NUDITY\",\n        \"PORNOGRAPHY\",\n        \"SEXUALITY\",\n        \"ADULT_SEX_EDUCATION\",\n        \"K_12_SEX_EDUCATION\",\n        \"SOCIAL_ADULT\"\n    ]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthClasses/11",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses",
										"11"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Classes - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthClasses/11",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthClasses",
										"11"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Bandwidth Control Rules",
					"item": [
						{
							"name": "Bandwidth Control Rules - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthControlRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Control Rules - Get lite",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthControlRules/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Control Rules - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/bandwidthControlRules/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Control Rules - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\"defaultRule\":false,\"maxBandwidth\":100,\"minBandwidth\":0,\"state\":\"ENABLED\",\"rank\":7,\"protocols\":[\"ANY_RULE\"],\"name\":\"Payload\",\"order\":3}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthControlRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Control Rules - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"id\": 166390,\r\n    \"name\": \"Payload\",\r\n    \"order\": 3,\r\n    \"state\": \"ENABLED\",\r\n    \"protocols\": [\r\n        \"ANY_RULE\"\r\n    ],\r\n    \"maxBandwidth\": 100,\r\n    \"minBandwidth\": 0,\r\n    \"rank\": 7,\r\n    \"lastModifiedTime\": 1744642379,\r\n    \"lastModifiedBy\": {\r\n        \"id\": 338811,\r\n        \"name\": \"admin@apainuly.net\"\r\n    },\r\n    \"accessControl\": \"READ_WRITE\",\r\n    \"defaultRule\": false\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthControlRules/166390",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules",
										"166390"
									]
								}
							},
							"response": []
						},
						{
							"name": "Bandwidth Control Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/bandwidthControlRules/166390",
									"host": [
										"{{url}}"
									],
									"path": [
										"bandwidthControlRules",
										"166390"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Browser Control Policy",
			"item": [
				{
					"name": "Browser Control Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/browserControlSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"browserControlSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Browser Control Settings  - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"bypassAllBrowsers\": true,\n    \"blockedBraveVersions\": [\n        \"NONE\"\n    ],\n    \"blockedInternetExplorerVersions\": [\n        \"NONE\"\n    ],\n    \"blockedChromeVersions\": [\n        \"NONE\"\n    ],\n    \"blockedFirefoxVersions\": [\n        \"NONE\"\n    ],\n    \"blockedSafariVersions\": [\n        \"NONE\"\n    ],\n    \"blockedOperaVersions\": [\n        \"NONE\"\n    ],\n    \"allowAllBrowsers\": false,\n    \"enableWarnings\": false,\n    \"enableSmartBrowserIsolation\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/browserControlSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"browserControlSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Browser Isolation",
			"item": [
				{
					"name": "Browser Isolation Profile - Get all",
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									""
								],
								"type": "text/javascript"
							}
						},
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "User-Agent",
								"value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36",
								"disabled": true
							},
							{
								"key": "Content-Type",
								"value": "application/json;charset=UTF-8"
							},
							{
								"key": "Accept",
								"value": "*/*",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/browserIsolation/profiles",
							"host": [
								"{{url}}"
							],
							"path": [
								"browserIsolation",
								"profiles"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Cloud Applications",
			"item": [
				{
					"name": "Cloud Applications - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/cloudApplications/policy?page=1&pageSize=100",
							"host": [
								"{{url}}"
							],
							"path": [
								"cloudApplications",
								"policy"
							],
							"query": [
								{
									"key": "page",
									"value": "1"
								},
								{
									"key": "pageSize",
									"value": "100"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Cloud Applications (SSL Policy) - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/cloudApplications/sslPolicy?page=1&pageSize=100",
							"host": [
								"{{url}}"
							],
							"path": [
								"cloudApplications",
								"sslPolicy"
							],
							"query": [
								{
									"key": "page",
									"value": "1"
								},
								{
									"key": "pageSize",
									"value": "100"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Cloud App Control Policy",
			"item": [
				{
					"name": "Cloud Application Instances",
					"item": [
						{
							"name": "Cloud Application Instances - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/cloudApplicationInstances",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplicationInstances"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud Application Instances - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/cloudApplicationInstances/122641",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplicationInstances",
										"122641"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud Application Instances - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\"instanceType\":\"BITBUCKET\",\"instanceName\":\"YOUR_Instance_Name\",\"instanceIdentifiers\":[{\"instanceIdentifierName\":\"Your Instance\",\"instanceIdentifier\":\".bitbucket.org/TestPaylaod/\",\"identifierType\":\"URL\"}]}\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/cloudApplicationInstances",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplicationInstances"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud Application Instances - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\"instanceType\":\"BITBUCKET\",\"instanceName\":\"YOUR_Instance_Name\",\"instanceIdentifiers\":[{\"instanceIdentifierName\":\"Your Instance\",\"instanceIdentifier\":\".bitbucket.org/TestPaylaod/\",\"identifierType\":\"URL\"}]}\r\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/cloudApplicationInstances/48007",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplicationInstances",
										"48007"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud Application Instances - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/cloudApplicationInstances/48007",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplicationInstances",
										"48007"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Tenancy Restriction Profile",
					"item": [
						{
							"name": "Tenancy Restriction Profile - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/tenancyRestrictionProfile",
									"host": [
										"{{url}}"
									],
									"path": [
										"tenancyRestrictionProfile"
									]
								}
							},
							"response": []
						},
						{
							"name": "Tenancy Restriction Profile - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/tenancyRestrictionProfile/122641",
									"host": [
										"{{url}}"
									],
									"path": [
										"tenancyRestrictionProfile",
										"122641"
									]
								}
							},
							"response": []
						},
						{
							"name": "Tenancy Restriction Profile - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"name\": \"Your Name\",\r\n        \"appType\": \"GOOGLE\",\r\n        \"itemTypePrimary\": \"TENANT_RESTRICTION_DOMAIN\",\r\n        \"itemDataPrimary\": [\r\n            \"google.com\"\r\n        ],\r\n        \"restrictPersonalO365Domains\": false,\r\n        \"allowGoogleConsumers\": false,\r\n        \"msLoginServicesTrV2\": false,\r\n        \"allowGoogleVisitors\": false,\r\n        \"allowGcpCloudStorageRead\": false\r\n    }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/tenancyRestrictionProfile",
									"host": [
										"{{url}}"
									],
									"path": [
										"tenancyRestrictionProfile"
									]
								}
							},
							"response": []
						},
						{
							"name": "Tenancy Restriction Profile - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"id\": 575571,\r\n    \"name\": \"Your Name\",\r\n    \"appType\": \"GOOGLE\",\r\n    \"itemTypePrimary\": \"TENANT_RESTRICTION_DOMAIN\",\r\n    \"itemDataPrimary\": [\r\n        \"google.com\"\r\n    ],\r\n    \"restrictPersonalO365Domains\": false,\r\n    \"allowGoogleConsumers\": false,\r\n    \"msLoginServicesTrV2\": false,\r\n    \"allowGoogleVisitors\": false,\r\n    \"allowGcpCloudStorageRead\": false\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/tenancyRestrictionProfile/575571",
									"host": [
										"{{url}}"
									],
									"path": [
										"tenancyRestrictionProfile",
										"575571"
									]
								}
							},
							"response": []
						},
						{
							"name": "Tenancy Restriction Profile - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/tenancyRestrictionProfile/575571",
									"host": [
										"{{url}}"
									],
									"path": [
										"tenancyRestrictionProfile",
										"575571"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Cloud App Control Rules",
					"item": [
						{
							"name": "Cloud App Control Rules - Get by rule type",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control  Rules - Get by rule ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control Rules - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"type\": \"STREAMING_MEDIA\",\r\n    \"order\": 1,\r\n    \"actions\": [\r\n        \"ALLOW_STREAMING_VIEW_LISTEN\",\r\n        \"ALLOW_STREAMING_UPLOAD\"\r\n    ],\r\n    \"state\": \"DISABLED\",\r\n    \"rank\": 7,\r\n    \"accessControl\": \"READ_WRITE\",\r\n    \"name\": \"Your Rule Name\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control Rules - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n     \"id\": 65546,\r\n\r\n    \"type\": \"STREAMING_MEDIA\",\r\n    \"order\": 1,\r\n    \"actions\": [\r\n        \"ALLOW_STREAMING_VIEW_LISTEN\",\r\n        \"ALLOW_STREAMING_UPLOAD\"\r\n    ],\r\n    \"state\": \"DISABLED\",\r\n    \"rank\": 7,\r\n    \"accessControl\": \"READ_WRITE\",\r\n    \"name\": \"Your Rule Name\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA/65546",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA",
										"65546"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA/64147",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA",
										"64147"
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control Rules - Add duplicate",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA/duplicate/{ruleId}?name=YourRuleName",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA",
										"duplicate",
										"{ruleId}"
									],
									"query": [
										{
											"key": "name",
											"value": "YourRuleName"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud App Control Rules - Fetch available actions",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{ \"cloudApps\":[\"DROPBOX\"] }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/webApplicationRules/STREAMING_MEDIA/availableActions",
									"host": [
										"{{url}}"
									],
									"path": [
										"webApplicationRules",
										"STREAMING_MEDIA",
										"availableActions"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Cloud Nanolog Streaming Service (NSS)",
			"item": [
				{
					"name": "Cloud NSS Feeds",
					"item": [
						{
							"name": "Cloud NSS Feeds - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/nssFeeds?cloudNss=true",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssFeeds"
									],
									"query": [
										{
											"key": "cloudNss",
											"value": "true"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud NSS Feeds - Get feeds in CSV format",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/nssFeeds?feedType=CSV",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssFeeds"
									],
									"query": [
										{
											"key": "feedType",
											"value": "CSV"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud NSS Feeds - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"name\": \"Your Feed Name\",\n    \"feedStatus\": \"ENABLED\",\n    \"nssLogType\": \"WEBLOG\",\n    \"nssFeedType\": \"JSON\",\n    \"feedOutputFormat\": \"\\\\{ \\\"sourcetype\\\" : \\\"zscalernss-web\\\", \\\"event\\\" : \\\\{\\\"datetime\\\":\\\"%d{yy}-%02d{mth}-%02d{dd} %02d{hh}:%02d{mm}:%02d{ss}\\\",\\\"reason\\\":\\\"%s{reason}\\\",\\\"event_id\\\":\\\"%d{recordid}\\\",\\\"protocol\\\":\\\"%s{proto}\\\",\\\"action\\\":\\\"%s{action}\\\",\\\"transactionsize\\\":\\\"%d{totalsize}\\\",\\\"responsesize\\\":\\\"%d{respsize}\\\",\\\"requestsize\\\":\\\"%d{reqsize}\\\",\\\"urlcategory\\\":\\\"%s{urlcat}\\\",\\\"serverip\\\":\\\"%s{sip}\\\",\\\"requestmethod\\\":\\\"%s{reqmethod}\\\",\\\"refererURL\\\":\\\"%s{ereferer}\\\",\\\"useragent\\\":\\\"%s{eua}\\\",\\\"product\\\":\\\"NSS\\\",\\\"location\\\":\\\"%s{elocation}\\\",\\\"ClientIP\\\":\\\"%s{cip}\\\",\\\"status\\\":\\\"%s{respcode}\\\",\\\"user\\\":\\\"%s{elogin}\\\",\\\"url\\\":\\\"%s{eurl}\\\",\\\"vendor\\\":\\\"Zscaler\\\",\\\"hostname\\\":\\\"%s{ehost}\\\",\\\"clientpublicIP\\\":\\\"%s{cintip}\\\",\\\"threatcategory\\\":\\\"%s{malwarecat}\\\",\\\"threatname\\\":\\\"%s{threatname}\\\",\\\"filetype\\\":\\\"%s{filetype}\\\",\\\"appname\\\":\\\"%s{appname}\\\",\\\"app_status\\\":\\\"%s{app_status}\\\",\\\"ba_apikey\\\":\\\"%s{ba_apikey}\\\",\\\"pagerisk\\\":\\\"%d{riskscore}\\\",\\\"threatseverity\\\":\\\"%s{threatseverity}\\\",\\\"department\\\":\\\"%s{edepartment}\\\",\\\"urlsupercategory\\\":\\\"%s{urlsupercat}\\\",\\\"appclass\\\":\\\"%s{appclass}\\\",\\\"dlpengine\\\":\\\"%s{dlpeng}\\\",\\\"urlclass\\\":\\\"%s{urlclass}\\\",\\\"threatclass\\\":\\\"%s{malwareclass}\\\",\\\"dlpdictionaries\\\":\\\"%s{dlpdict}\\\",\\\"fileclass\\\":\\\"%s{fileclass}\\\",\\\"bwthrottle\\\":\\\"%s{bwthrottle}\\\",\\\"contenttype\\\":\\\"%s{contenttype}\\\",\\\"unscannabletype\\\":\\\"%s{unscannabletype}\\\",\\\"deviceowner\\\":\\\"%s{deviceowner}\\\",\\\"devicehostname\\\":\\\"%s{devicehostname}\\\",\\\"keyprotectiontype\\\":\\\"%s{keyprotectiontype}\\\"\\\\}\\\\}\\n\",\n    \"userObfuscation\": \"DISABLED\",\n    \"timeZone\": \"GMT\",\n    \"customEscapedCharacter\": [\n        \"ASCII_44\",\n        \"ASCII_92\",\n        \"ASCII_34\"\n    ],\n    \"epsRateLimit\": 0,\n    \"duplicateLogs\": 0,\n    \"cloudNss\": true,\n    \"jsonArrayToggle\": true,\n    \"siemType\": \"SPLUNK\",\n    \"maxBatchSize\": 512,\n    \"connectionURL\": \"https://url.com\",\n    \"connectionHeaders\": [\n        \"Test:a\"\n    ],\n    \"lastSuccessFullTest\": 0,\n    \"testConnectivityCode\": 0,\n    \"nssType\": \"NSS_FOR_WEB\",\n    \"oauthAuthentication\": false,\n    \"securityFeedFilter\": false\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssFeeds?cloudNss=true",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssFeeds"
									],
									"query": [
										{
											"key": "cloudNss",
											"value": "true"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud NSS Feeds - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"id\": 372,\r\n    \"name\": \"Your Feed Name\",\r\n    \"feedStatus\": \"ENABLED\",\r\n    \"nssLogType\": \"WEBLOG\",\r\n    \"nssFeedType\": \"JSON\",\r\n    \"feedOutputFormat\": \"\\\\{ \\\"sourcetype\\\" : \\\"zscalernss-web\\\", \\\"event\\\" : \\\\{\\\"datetime\\\":\\\"%d{yy}-%02d{mth}-%02d{dd} %02d{hh}:%02d{mm}:%02d{ss}\\\",\\\"reason\\\":\\\"%s{reason}\\\",\\\"event_id\\\":\\\"%d{recordid}\\\",\\\"protocol\\\":\\\"%s{proto}\\\",\\\"action\\\":\\\"%s{action}\\\",\\\"transactionsize\\\":\\\"%d{totalsize}\\\",\\\"responsesize\\\":\\\"%d{respsize}\\\",\\\"requestsize\\\":\\\"%d{reqsize}\\\",\\\"urlcategory\\\":\\\"%s{urlcat}\\\",\\\"serverip\\\":\\\"%s{sip}\\\",\\\"requestmethod\\\":\\\"%s{reqmethod}\\\",\\\"refererURL\\\":\\\"%s{ereferer}\\\",\\\"useragent\\\":\\\"%s{eua}\\\",\\\"product\\\":\\\"NSS\\\",\\\"location\\\":\\\"%s{elocation}\\\",\\\"ClientIP\\\":\\\"%s{cip}\\\",\\\"status\\\":\\\"%s{respcode}\\\",\\\"user\\\":\\\"%s{elogin}\\\",\\\"url\\\":\\\"%s{eurl}\\\",\\\"vendor\\\":\\\"Zscaler\\\",\\\"hostname\\\":\\\"%s{ehost}\\\",\\\"clientpublicIP\\\":\\\"%s{cintip}\\\",\\\"threatcategory\\\":\\\"%s{malwarecat}\\\",\\\"threatname\\\":\\\"%s{threatname}\\\",\\\"filetype\\\":\\\"%s{filetype}\\\",\\\"appname\\\":\\\"%s{appname}\\\",\\\"app_status\\\":\\\"%s{app_status}\\\",\\\"ba_apikey\\\":\\\"%s{ba_apikey}\\\",\\\"pagerisk\\\":\\\"%d{riskscore}\\\",\\\"threatseverity\\\":\\\"%s{threatseverity}\\\",\\\"department\\\":\\\"%s{edepartment}\\\",\\\"urlsupercategory\\\":\\\"%s{urlsupercat}\\\",\\\"appclass\\\":\\\"%s{appclass}\\\",\\\"dlpengine\\\":\\\"%s{dlpeng}\\\",\\\"urlclass\\\":\\\"%s{urlclass}\\\",\\\"threatclass\\\":\\\"%s{malwareclass}\\\",\\\"dlpdictionaries\\\":\\\"%s{dlpdict}\\\",\\\"fileclass\\\":\\\"%s{fileclass}\\\",\\\"bwthrottle\\\":\\\"%s{bwthrottle}\\\",\\\"contenttype\\\":\\\"%s{contenttype}\\\",\\\"unscannabletype\\\":\\\"%s{unscannabletype}\\\",\\\"deviceowner\\\":\\\"%s{deviceowner}\\\",\\\"devicehostname\\\":\\\"%s{devicehostname}\\\",\\\"keyprotectiontype\\\":\\\"%s{keyprotectiontype}\\\"\\\\}\\\\}\\n\",\r\n    \"userObfuscation\": \"DISABLED\",\r\n    \"timeZone\": \"GMT\",\r\n    \"customEscapedCharacter\": [\r\n        \"ASCII_44\",\r\n        \"ASCII_92\",\r\n        \"ASCII_34\"\r\n    ],\r\n    \"epsRateLimit\": 0,\r\n    \"duplicateLogs\": 0,\r\n    \"cloudNss\": true,\r\n    \"jsonArrayToggle\": true,\r\n    \"siemType\": \"SPLUNK\",\r\n    \"maxBatchSize\": 512,\r\n    \"connectionURL\": \"https://url.com\",\r\n    \"connectionHeaders\": [\r\n        \"Test:a\"\r\n    ],\r\n    \"lastSuccessFullTest\": 0,\r\n    \"testConnectivityCode\": 0,\r\n    \"nssType\": \"NSS_FOR_WEB\",\r\n    \"oauthAuthentication\": false,\r\n    \"securityFeedFilter\": false\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssFeeds/372?cloudNss=true",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssFeeds",
										"372"
									],
									"query": [
										{
											"key": "cloudNss",
											"value": "true"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud NSS Feeds - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssFeeds/372?cloudNss=true",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssFeeds",
										"372"
									],
									"query": [
										{
											"key": "cloudNss",
											"value": "true"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "NSS Servers",
					"item": [
						{
							"name": "NSS Servers - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/nssServers/types",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssServers",
										"types"
									]
								}
							},
							"response": []
						},
						{
							"name": "NSS Servers - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/nssServers",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssServers"
									]
								}
							},
							"response": []
						},
						{
							"name": "NSS Servers - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\"type\":\"NSS_FOR_WEB\",\"status\":\"ENABLED\",\"name\":\"Test Payload\"}\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssServers",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssServers"
									]
								}
							},
							"response": []
						},
						{
							"name": "NSS Servers - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"id\": 541,\r\n    \"name\": \"Test \",\r\n    \"status\": \"ENABLED\",\r\n    \"type\": \"NSS_FOR_WEB\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssServers/541",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssServers",
										"541"
									]
								}
							},
							"response": []
						},
						{
							"name": "NSS Servers - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/nssServers/541",
									"host": [
										"{{url}}"
									],
									"path": [
										"nssServers",
										"541"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "NSS Feeds",
			"item": [
				{
					"name": "NSS Feed - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/nssFeeds",
							"host": [
								"{{url}}"
							],
							"path": [
								"nssFeeds"
							]
						}
					},
					"response": []
				},
				{
					"name": "NSS Feed - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/nssFeeds/12",
							"host": [
								"{{url}}"
							],
							"path": [
								"nssFeeds",
								"12"
							]
						}
					},
					"response": []
				},
				{
					"name": "NSS Feed - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"jsonArrayToggle\": true,\n    \"maxBatchSize\": 512,\n    \"cloudNss\": true,\n    \"timeZone\": \"GMT\",\n    \"feedStatus\": \"ENABLED\",\n    \"nssFeedType\": \"JSON\",\n    \"testConnectivityDisplay\": \"Validation pending. Click icon to test the connectivity.\",\n    \"siemType\": \"SPLUNK\",\n    \"nssType\": \"NSS_FOR_WEB\",\n    \"name\": \"1lsa4q\",\n    \"connectionURL\": \"https://test.com\",\n    \"feedOutputFormat\": \"Test\",\n    \"nssLogType\": \"WEBLOG\",\n    \"connectionHeaders\": [\n        \"1:2\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/nssFeeds",
							"host": [
								"{{url}}"
							],
							"path": [
								"nssFeeds"
							]
						}
					},
					"response": []
				},
				{
					"name": "NSS Feed - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{    \"id\": 58919,\r\n    \r\n    \"jsonArrayToggle\": true,\r\n    \"maxBatchSize\": 512,\r\n    \"cloudNss\": true,\r\n    \"timeZone\": \"GMT\",\r\n    \"feedStatus\": \"ENABLED\",\r\n    \"nssFeedType\": \"JSON\",\r\n    \"testConnectivityDisplay\": \"Validation pending. Click icon to test the connectivity.\",\r\n    \"siemType\": \"SPLUNK\",\r\n    \"nssType\": \"NSS_FOR_WEB\",\r\n    \"name\": \"1lsa4q\",\r\n    \"connectionURL\": \"https://test.com\",\r\n    \"feedOutputFormat\": \"Test\",\r\n    \"nssLogType\": \"WEBLOG\",\r\n    \"connectionHeaders\": [\r\n        \"1:2\"\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/nssFeeds/58919",
							"host": [
								"{{url}}"
							],
							"path": [
								"nssFeeds",
								"58919"
							]
						}
					},
					"response": []
				},
				{
					"name": "NSS Feed - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/nssFeeds/58919",
							"host": [
								"{{url}}"
							],
							"path": [
								"nssFeeds",
								"58919"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Eusa Status",
			"item": [
				{
					"name": "Eusa Status - GET",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/eusaStatus",
							"host": [
								"{{url}}"
							],
							"path": [
								"eusaStatus"
							]
						}
					},
					"response": []
				},
				{
					"name": "Eusa Status - POST",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n        \"version\": {\n            \"id\": 7,\n            \"name\": \"'SLA-11-01-16'\"\n        },\n        \"acceptedStatus\": true\n    }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/eusaStatus",
							"host": [
								"{{url}}"
							],
							"path": [
								"eusaStatus"
							]
						}
					},
					"response": []
				},
				{
					"name": "Eusa Status - PUT",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 54,\r\n    \"version\": {\r\n        \"id\": 7,\r\n        \"name\": \"'SLA-11-01-16'\"\r\n    },\r\n    \"acceptedStatus\": true\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/eusaStatus/54",
							"host": [
								"{{url}}"
							],
							"path": [
								"eusaStatus",
								"54"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Data Loss Prevention",
			"item": [
				{
					"name": "DLP Rules",
					"item": [
						{
							"name": "DLP Rules - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/webDlpRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/webDlpRules/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Add (with content inspection)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "  {\n        \"accessControl\": \"READ_WRITE\",\n        \"order\": 1,\n        \"protocols\": [\n            \"FTP_RULE\",\n            \"HTTPS_RULE\",\n            \"HTTP_RULE\"\n        ],\n        \"rank\": 1,\n        \"cloudApplications\": [],\n        \"minSize\": 0,\n        \"action\": \"ALLOW\",\n        \"state\": \"ENABLED\",\n        \"matchOnly\": false,\n        \"icapServer\": {},\n        \"withoutContentInspection\": false,\n        \"name\": \"Your Rule Name\",\n        \"zscalerIncidentReceiver\": true\n    }"
								},
								"url": {
									"raw": "{{url}}/webDlpRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Update (with content inspection)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"accessControl\": \"READ_WRITE\",\n    \"id\": 27496,\n    \"order\": 1,\n    \"protocols\": [\n        \"HTTP_RULE\",\n        \"FTP_RULE\",\n        \"HTTPS_RULE\"\n    ],\n    \"rank\": 1,\n    \"cloudApplications\": [],\n    \"minSize\": 0,\n    \"action\": \"ALLOW\",\n    \"state\": \"ENABLED\",\n    \"matchOnly\": false,\n    \"icapServer\": {},\n    \"withoutContentInspection\": false,\n    \"name\": \"Your Rule Name\",\n    \"zscalerIncidentReceiver\": true\n}"
								},
								"url": {
									"raw": "{{url}}/webDlpRules/27496",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules",
										"27496"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Add (without content inspection)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "   {\n        \"accessControl\": \"READ_WRITE\",\n               \"order\": 1,\n        \"protocols\": [\n            \"FTP_RULE\",\n            \"HTTPS_RULE\",\n            \"HTTP_RULE\"\n        ],\n        \"rank\": 1,\n        \n        \"fileTypes\": [\n            \"BZIP2\"\n        ],\n        \"cloudApplications\": [],\n        \"minSize\": 0,\n        \"action\": \"ALLOW\",\n        \"state\": \"ENABLED\",\n        \"matchOnly\": false,\n        \"icapServer\": {},\n        \"withoutContentInspection\": true, \n        \"name\": \"Your Rule name \",\n        \"zscalerIncidentReceiver\": true\n    }"
								},
								"url": {
									"raw": "{{url}}/webDlpRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Update (without content inspection)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"accessControl\": \"READ_WRITE\",\n    \"id\": 27498,\n    \"order\": 1,\n    \"protocols\": [\n        \"FTP_RULE\",\n        \"HTTPS_RULE\",\n        \"HTTP_RULE\"\n    ],\n    \"rank\": 7,\n   \n    \"fileTypes\": [\n        \"BZIP2\"\n    ],\n    \"cloudApplications\": [],\n    \"minSize\": 0,\n    \"action\": \"ALLOW\",\n    \"state\": \"ENABLED\",\n    \"matchOnly\": false,\n    \"icapServer\": {},\n    \"withoutContentInspection\": true,\n    \"name\": \"Your Rule name\",\n    \"zscalerIncidentReceiver\": true\n}"
								},
								"url": {
									"raw": "{{url}}/webDlpRules/27498",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules",
										"27498"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/webDlpRules/27496",
									"host": [
										"{{url}}"
									],
									"path": [
										"webDlpRules",
										"27496"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "DLP Dictionaries",
					"item": [
						{
							"name": "DLP Dictionaries - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpDictionaries",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpDictionaries/1",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"1"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpDictionaries/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Get predefined identifiers",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpDictionaries/{dictId}/predefinedIdentifiers",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"{dictId}",
										"predefinedIdentifiers"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n        \"name\": \"Your Dictionary Name\",\n        \"description\": \"Your Description\",\n        \"phrases\": [\n            {\n                \"action\": \"PHRASE_COUNT_TYPE_ALL\",\n                \"phrase\": \"YourPhrase\"\n            }\n        ],\n        \"customPhraseMatchType\": \"MATCH_ALL_CUSTOM_PHRASE_PATTERN_DICTIONARY\",\n        \"patterns\": [\n            {\n                \"action\": \"PATTERN_COUNT_TYPE_UNIQUE\",\n                \"pattern\": \"YourPattern\"\n            }\n        ],\n        \"nameL10nTag\": false,\n        \"dictionaryType\": \"PATTERNS_AND_PHRASES\"\n    }"
								},
								"url": {
									"raw": "{{url}}/dlpDictionaries",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Validate pattern",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"disabled": true
									}
								],
								"body": {
									"mode": "raw",
									"raw": "Your Pattern",
									"options": {
										"raw": {
											"language": "text"
										}
									}
								},
								"url": {
									"raw": "{{url}}/dlpDictionaries/validateDlpPattern",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"validateDlpPattern"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 1,\n    \"name\": \"Your Dictionary Name\",\n    \"description\": \"Your Description\",\n    \"phrases\": [\n        {\n            \"action\": \"PHRASE_COUNT_TYPE_ALL\",\n            \"phrase\": \"YourPhrase\"\n        }\n    ],\n    \"customPhraseMatchType\": \"MATCH_ALL_CUSTOM_PHRASE_PATTERN_DICTIONARY\",\n    \"patterns\": [\n        {\n            \"action\": \"PATTERN_COUNT_TYPE_UNIQUE\",\n            \"pattern\": \"YourPattern\"\n        }\n    ],\n    \"nameL10nTag\": false,\n    \"dictionaryType\": \"PATTERNS_AND_PHRASES\"\n    \n}\n    "
								},
								"url": {
									"raw": "{{url}}/dlpDictionaries/1",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"1"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Dictionaries - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/dlpDictionaries/1",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpDictionaries",
										"1"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "DLP Engines",
					"item": [
						{
							"name": "DLP Engines - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpEngines",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpEngines/60",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines",
										"60"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpEngines/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{       \n        \"name\": \"Your DLP-Engine name\",\n        \"engineExpression\": \"((D45.S > 0))\",\n        \"customDlpEngine\": true,\n        \"description\": \"Your Description\"\n        }"
								},
								"url": {
									"raw": "{{url}}/dlpEngines",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Validate expression",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json",
										"disabled": true
									}
								],
								"body": {
									"mode": "raw",
									"raw": "(D45.S > 0)\n    ",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/dlpEngines/validateDlpExpr",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines",
										"validateDlpExpr"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 25,\n    \"name\": \"Your DLP-Engine name\",\n    \"engineExpression\": \"((D45.S > 0))\",\n    \"customDlpEngine\": true,\n    \"description\": \"Your Description\"\n}"
								},
								"url": {
									"raw": "{{url}}/dlpEngines/25",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines",
										"25"
									]
								}
							},
							"response": []
						},
						{
							"name": "DLP Engines - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/dlpEngines/25",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpEngines",
										"25"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "DLP Notification Templates",
					"item": [
						{
							"name": "Notification Templates - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpNotificationTemplates",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpNotificationTemplates"
									]
								}
							},
							"response": []
						},
						{
							"name": "Notification Templates - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpNotificationTemplates/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpNotificationTemplates",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Notification Templates - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": " {\n      \n        \"name\": \"Your Template  name\",\n        \"subject\": \"Your Template Subject \",\n        \"tlsEnabled\": false,\n        \"attachContent\": false,\n        \"plainTextMessage\": \"Your Template's Plain text Mesage \",\n        \"htmlMessage\": \"httml Message \"\n    }"
								},
								"url": {
									"raw": "{{url}}/dlpNotificationTemplates",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpNotificationTemplates"
									]
								}
							},
							"response": []
						},
						{
							"name": "Notification Templates - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 48,\n    \"name\": \"Your Template  name\",\n    \"subject\": \"Your Template Subject \",\n    \"tlsEnabled\": false,\n    \"attachContent\": false,\n    \"plainTextMessage\": \"Your Template's Plain text Mesage \",\n    \"htmlMessage\": \"httml Message \"\n}"
								},
								"url": {
									"raw": "{{url}}/dlpNotificationTemplates/48",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpNotificationTemplates",
										"48"
									]
								}
							},
							"response": []
						},
						{
							"name": "Notification Templates - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/dlpNotificationTemplates/48",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpNotificationTemplates",
										"48"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "DLP Incident Receiver",
					"item": [
						{
							"name": "ICAP Servers - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/icapServers",
									"host": [
										"{{url}}"
									],
									"path": [
										"icapServers"
									]
								}
							},
							"response": []
						},
						{
							"name": "ICAP Servers - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/icapServers/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"icapServers",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Incident Receiver Servers - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/incidentReceiverServers",
									"host": [
										"{{url}}"
									],
									"path": [
										"incidentReceiverServers"
									]
								}
							},
							"response": []
						},
						{
							"name": "Incident Receiver Servers - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/incidentReceiverServers/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"incidentReceiverServers",
										"lite"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Index Templates",
					"item": [
						{
							"name": "Exact Data Match - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpExactDataMatchSchemas",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpExactDataMatchSchemas"
									]
								}
							},
							"response": []
						},
						{
							"name": "Exact Data Match - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/dlpExactDataMatchSchemas/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dlpExactDataMatchSchemas",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Indexed Document Match - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/idmprofile",
									"host": [
										"{{url}}"
									],
									"path": [
										"idmprofile"
									]
								}
							},
							"response": []
						},
						{
							"name": "Indexed Document Match - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/idmprofile/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"idmprofile",
										"lite"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Device Groups",
			"item": [
				{
					"name": "Devices - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/deviceGroups/devices",
							"host": [
								"{{url}}"
							],
							"path": [
								"deviceGroups",
								"devices"
							]
						}
					},
					"response": []
				},
				{
					"name": "Device Groups - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/deviceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"deviceGroups"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "DNS Control Policy",
			"item": [
				{
					"name": "DNS Control Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/firewallDnsRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallDnsRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "DNS Control Rules - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/firewallDnsRules/12",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallDnsRules",
								"12"
							]
						}
					},
					"response": []
				},
				{
					"name": "DNS Control Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"name\": \"Your Rule Name\",\r\n    \"description\": \"Description Create via Public API\",\r\n    \"action\": \"ALLOW\",\r\n    \"rank\": 0,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallDnsRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallDnsRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "DNS Control Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{    \"id\": 58920,\r\n\r\n    \"name\": \"Your Rule Name\",\r\n    \"description\": \"Description Create via Public API\",\r\n    \"action\": \"ALLOW\",\r\n    \"rank\": 0,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallDnsRules/58920",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallDnsRules",
								"58920"
							]
						}
					},
					"response": []
				},
				{
					"name": "DNS Control Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallDnsRules/365935",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallDnsRules",
								"365935"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "End User Notifications",
			"item": [
				{
					"name": "End User Notifications - Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/eun",
							"host": [
								"{{url}}"
							],
							"path": [
								"eun"
							]
						}
					},
					"response": []
				},
				{
					"name": "End User Notifications - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"aupFrequency\": \"WEEKLY\",\r\n    \"aupDayOffset\": 0,\r\n    \"aupMessage\": \"<html>\\n</html>\",\r\n    \"notificationType\": \"CUSTOM\",\r\n    \"displayReason\": false,\r\n    \"displayCompName\": false,\r\n    \"displayCompLogo\": false,\r\n    \"customText\": \"Website blockedxx\",\r\n    \"urlCatReviewEnabled\": true,\r\n    \"urlCatReviewSubmitToSecurityCloud\": false,\r\n    \"urlCatReviewCustomLocation\": \"http://hekx.c\",\r\n    \"urlCatReviewText\": \"If you believe you received this message in error, please click here to request a review of this site.x\",\r\n    \"securityReviewEnabled\": true,\r\n    \"securityReviewSubmitToSecurityCloud\": false,\r\n    \"securityReviewCustomLocation\": \"http://d.ldd\",\r\n    \"securityReviewText\": \"Click to request security review.x2\",\r\n    \"webDlpReviewEnabled\": true,\r\n    \"webDlpReviewSubmitToSecurityCloud\": false,\r\n    \"webDlpReviewCustomLocation\": \"http://dsf.fs\",\r\n    \"webDlpReviewText\": \"Click to request policy review.x3\",\r\n    \"redirectUrl\": \"https://www.xxgoxxogldf.dfd\",\r\n    \"supportEmail\": \"support2@org.ccom\",\r\n    \"supportPhone\": \"1234567891\",\r\n    \"orgPolicyLink\": \"http://org.com/policy.html\",\r\n    \"cautionAgainAfter\": 3600,\r\n    \"cautionPerDomain\": true,\r\n    \"cautionCustomText\": \"Proceeding to visit the site may violate your company policy. Press the \\\"Continue\\\" button to access the site anyway or press the \\\"Back\\\" button on your browser to go backxxxx\",\r\n    \"idpProxyNotificationText\": \"Test\",\r\n    \"quarantineCustomNotificationText\": \"We are checking this file for a potential security risk. The file you attempted to download is being analyzed for your protection. It is not blocked. The analysis can take up to 10 minutes, depending on the size and type of the file. If safe, your file downloads automatically. If unsafe, the file will be blocked.dssd\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/eun",
							"host": [
								"{{url}}"
							],
							"path": [
								"eun"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Event Logs",
			"item": [
				{
					"name": "Event  Logs - Generate report",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"page\":0,\"pageSize\":100,\"startTime\":1661990400000,\"endTime\":1662981535290}"
						},
						"url": {
							"raw": "{{url}}/eventlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"eventlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Event Logs  - Get status",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/eventlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"eventlogEntryReport"
							]
						}
					},
					"response": []
				},
				{
					"name": "Event Logs - Get report",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/eventlogEntryReport/download",
							"host": [
								"{{url}}"
							],
							"path": [
								"eventlogEntryReport",
								"download"
							]
						}
					},
					"response": []
				},
				{
					"name": "Event Logs - Delete report",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/eventlogEntryReport",
							"host": [
								"{{url}}"
							],
							"path": [
								"eventlogEntryReport"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "File Type Control Policy",
			"item": [
				{
					"name": "File Type Control Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/fileTypeRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"fileTypeRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "File Type Control Rules - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/fileTypeRules/12",
							"host": [
								"{{url}}"
							],
							"path": [
								"fileTypeRules",
								"12"
							]
						}
					},
					"response": []
				},
				{
					"name": "File Type Control Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"filteringAction\": \"ALLOW\",\n    \"name\": \"Your Rule Name\",\n    \"description\": \"Automation Create via Public API\",\n    \"rank\": 7,\n    \"state\": \"ENABLED\",\n    \"protocols\": [\n        \"FTP_RULE\",\n        \"HTTPS_RULE\",\n        \"HTTP_RULE\"\n    ],\n    \"order\": 1,\n    \"fileTypes\": [\n        \"FTCATEGORY_ALZ\",\n        \"FTCATEGORY_B64\",\n        \"FTCATEGORY_P7Z\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/fileTypeRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"fileTypeRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "File Type Control Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{    \"id\": 58922,\r\n\r\n\r\n    \"filteringAction\": \"ALLOW\",\r\n    \"name\": \"Your Rule Name\",\r\n    \"description\": \"Automation Create via Public API\",\r\n    \"rank\": 7,\r\n    \"state\": \"ENABLED\",\r\n    \"protocols\": [\r\n        \"FTP_RULE\",\r\n        \"HTTPS_RULE\",\r\n        \"HTTP_RULE\"\r\n    ],\r\n    \"order\": 1,\r\n    \"fileTypes\": [\r\n        \"FTCATEGORY_ALZ\",\r\n        \"FTCATEGORY_B64\",\r\n        \"FTCATEGORY_P7Z\"\r\n    ]\r\n\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/fileTypeRules/58922",
							"host": [
								"{{url}}"
							],
							"path": [
								"fileTypeRules",
								"58922"
							]
						}
					},
					"response": []
				},
				{
					"name": "File Type Control Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/fileTypeRules/58922",
							"host": [
								"{{url}}"
							],
							"path": [
								"fileTypeRules",
								"58922"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Firewall Policies",
			"item": [
				{
					"name": "DNS Gateways",
					"item": [
						{
							"name": "Dns Gateways - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/dnsGateways",
									"host": [
										"{{url}}"
									],
									"path": [
										"dnsGateways"
									]
								}
							},
							"response": []
						},
						{
							"name": "Dns Gateways - Get lite",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/dnsGateways/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dnsGateways",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Dns Gateways - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"name\": \"Your Name\",\n    \"primaryIpOrFqdn\": \"29.9.9.652\",\n    \"primaryPorts\": [\n        53,\n        53,\n        443\n    ],\n    \"secondaryIpOrFqdn\": \"29.9.9.651\",\n    \"secondaryPorts\": [\n        55,\n        55,\n        449\n    ],\n    \"protocols\": [\n        \"TCP\",\n        \"UDP\",\n        \"DOH\"\n    ],\n    \"failureBehavior\": \"FAIL_ALLOW_IGNORE_DNAT\",\n    \"autoCreated\": false,\n    \"natZtrGateway\": false,\n    \"dnsGatewayProtocols\": [\n        \"UDP\",\n        \"DOH\",\n        \"TCP\"\n    ]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/dnsGateways",
									"host": [
										"{{url}}"
									],
									"path": [
										"dnsGateways"
									]
								}
							},
							"response": []
						},
						{
							"name": "Dns Gateways - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 133162,\n    \"name\": \"Your Name\",\n    \"dnsGatewayType\": \"OFW_PDNS_REDIR_GW\",\n    \"primaryIpOrFqdn\": \"29.9.9.652\",\n    \"primaryPorts\": [\n        53,\n        53,\n        443\n    ],\n    \"secondaryIpOrFqdn\": \"29.9.9.651\",\n    \"secondaryPorts\": [\n        55,\n        55,\n        449\n    ],\n    \"protocols\": [\n        \"TCP\",\n        \"UDP\",\n        \"DOH\"\n    ],\n    \"failureBehavior\": \"FAIL_ALLOW_IGNORE_DNAT\",\n    \"autoCreated\": false,\n    \"natZtrGateway\": false,\n    \"dnsGatewayProtocols\": [\n        \"DOH\",\n        \"UDP\",\n        \"TCP\"\n    ]\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/dnsGateways/133162",
									"host": [
										"{{url}}"
									],
									"path": [
										"dnsGateways",
										"133162"
									]
								}
							},
							"response": []
						},
						{
							"name": "Dns Gateways - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/dnsGateways/133162",
									"host": [
										"{{url}}"
									],
									"path": [
										"dnsGateways",
										"133162"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Firewall Filtering Rules  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/firewallFilteringRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallFilteringRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Firewall Filtering Rules  - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/firewallFilteringRules/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallFilteringRules",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Windows  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/timeWindows",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeWindows"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Windows  - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/timeWindows/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeWindows",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Applications  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkApplications",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplications"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Applications  - Get all with description translation",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkApplications?locale=en-US",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplications"
							],
							"query": [
								{
									"key": "locale",
									"value": "en-US"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Services  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkServices",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServices"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Services  - Get all with description translation",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkServices?locale=en-US",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServices"
							],
							"query": [
								{
									"key": "locale",
									"value": "en-US"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Service Groups  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkServiceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServiceGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Application Groups  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/networkApplicationGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplicationGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipSourceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPv6 Source Groups - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipSourceGroups/ipv6SourceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"ipv6SourceGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPv6 Source Groups - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipSourceGroups/ipv6SourceGroups/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"ipv6SourceGroups",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups  - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipSourceGroups/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups  - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipSourceGroups/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups  - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipDestinationGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPv6 Destination Groups - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipDestinationGroups/ipv6DestinationGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"ipv6DestinationGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPv6 Destination Groups - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipDestinationGroups/ipv6DestinationGroups/lite?type=DSTN_IP",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"ipv6DestinationGroups",
								"lite"
							],
							"query": [
								{
									"key": "type",
									"value": "DSTN_IP"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups  - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipDestinationGroups/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups  - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipDestinationGroups/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Firewall Filtering Rules  - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n        \"accessControl\": \"READ_WRITE\",\r\n        \"enableFullLogging\": false,\r\n        \"name\": \"Your_rule\",\r\n        \"order\": 1,\r\n        \"rank\": 1,\r\n        \"action\": \"ALLOW\",\r\n        \"state\": \"ENABLED\",\r\n        \"predefined\": false,\r\n        \"defaultRule\": false,\r\n        \"description\": \"Your description\"\r\n\r\n    }"
						},
						"url": {
							"raw": "{{url}}/firewallFilteringRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallFilteringRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Firewall Filtering Rules  - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{        \"id\": 123,\r\n         \"accessControl\": \"READ_WRITE\",\r\n        \"enableFullLogging\": false,\r\n        \"name\": \"Your_rule\",\r\n        \"order\": 1,\r\n        \"rank\": 1,\r\n        \"action\": \"ALLOW\",\r\n        \"state\": \"ENABLED\",\r\n        \"predefined\": false,\r\n        \"defaultRule\": false,\r\n         \"description\": \"Your description\"\r\n\r\n    }"
						},
						"url": {
							"raw": "{{url}}/firewallFilteringRules/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallFilteringRules",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Firewall Filtering Rules  - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/firewallFilteringRules/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallFilteringRules",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": " {\r\n        \"name\": \"You Group Name\",\r\n        \"type\": \"DSTN_IP\",\r\n        \"addresses\": [\r\n            \"1.2.3.4\"\r\n        ],\r\n        \"description\": \"Your Description\",\r\n        \"ipCategories\": [],\r\n        \"countries\": [],\r\n        \"urlCategories\": []\r\n     \r\n    }"
						},
						"url": {
							"raw": "{{url}}/ipDestinationGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 36862,\r\n    \"name\": \"You Group Name\",\r\n    \"type\": \"DSTN_IP\",\r\n    \"addresses\": [\r\n        \"1.2.3.4\"\r\n    ],\r\n    \"description\": \"Your Description3\",\r\n    \"ipCategories\": [],\r\n    \"countries\": []\r\n}"
						},
						"url": {
							"raw": "{{url}}/ipDestinationGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Destination Groups - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/ipDestinationGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipDestinationGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n        \"name\": \"Your Group Name\",\r\n        \"ipAddresses\": [\r\n            \"1.2.3.4\"\r\n        ],\r\n        \"description\": \"Your Description\"\r\n    }"
						},
						"url": {
							"raw": "{{url}}/ipSourceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 36872,\r\n    \"name\": \"Your Group Name\",\r\n    \"ipAddresses\": [\r\n        \"1.2.3.4\"\r\n    ],\r\n    \"description\": \"Your Description\"\r\n}"
						},
						"url": {
							"raw": "{{url}}/ipSourceGroups/36872",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"36872"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Source Groups - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 36872,\r\n    \"name\": \"Your Group Name\",\r\n    \"ipAddresses\": [\r\n        \"1.2.3.4\"\r\n    ],\r\n    \"description\": \"Your Description\"\r\n}"
						},
						"url": {
							"raw": "{{url}}/ipSourceGroups/36872",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipSourceGroups",
								"36872"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Application Groups  - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "\r\n    {\r\n        \"name\": \"network Application group\",\r\n        \"networkApplications\": [\r\n            \"APNS\"\r\n        ],\r\n        \"description\": \"Your Description\"\r\n    }\r\n"
						},
						"url": {
							"raw": "{{url}}/networkApplicationGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplicationGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Application Groups  - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 123,\r\n    \"name\": \"network Application group\",\r\n    \"networkApplications\": [\r\n        \"APNS\"\r\n    ],\r\n    \"description\": \"Your Description\"\r\n}"
						},
						"url": {
							"raw": "{{url}}/networkApplicationGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplicationGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Application Groups  - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/networkApplicationGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkApplicationGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Services  - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n        \"name\": \"Network Service\",\r\n        \"srcTcpPorts\": [\r\n            {\r\n                \"start\": 123\r\n            }\r\n        ],\r\n        \"destTcpPorts\": [\r\n            {\r\n                \"start\": 123\r\n            }\r\n        ],\r\n        \"srcUdpPorts\": [\r\n            {\r\n                \"start\": 123\r\n            }\r\n        ],\r\n        \"destUdpPorts\": [\r\n            {\r\n                \"start\": 123\r\n            }\r\n        ],\r\n        \"type\": \"CUSTOM\",\r\n        \"description\": \"Your Description\"\r\n    }"
						},
						"url": {
							"raw": "{{url}}/networkServices",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServices"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Services  - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 123,\r\n    \"name\": \"Network Service\",\r\n    \"srcTcpPorts\": [\r\n        {\r\n            \"start\": 123\r\n        }\r\n    ],\r\n    \"destTcpPorts\": [\r\n        {\r\n            \"start\": 123\r\n        }\r\n    ],\r\n    \"srcUdpPorts\": [\r\n        {\r\n            \"start\": 123\r\n        }\r\n    ],\r\n    \"destUdpPorts\": [\r\n        {\r\n            \"start\": 123\r\n        }\r\n    ],\r\n    \"type\": \"CUSTOM\",\r\n    \"description\": \"Your Description\"\r\n}"
						},
						"url": {
							"raw": "{{url}}/networkServices/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServices",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Services  - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/networkServices/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServices",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Service Groups - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": " {\r\n        \"name\": \"Network Services\",\r\n        \"services\": [\r\n            {\r\n                \"id\": 13734,\r\n                \"name\": \"AIM\"\r\n               \r\n            }\r\n        ],\r\n           \"description\": \"Your description\"\r\n\r\n    }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/networkServiceGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServiceGroups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Service Groups - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": " {\r\n         \"id\": 123,\r\n\r\n        \"name\": \"Network Services\",\r\n        \"services\": [\r\n            {\r\n                \"id\": 13734,\r\n                \"name\": \"AIM\"\r\n               \r\n            }\r\n        ],\r\n           \"description\": \"Your description\"\r\n\r\n    }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/networkServiceGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServiceGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Network Service Groups - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/networkServiceGroups/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"networkServiceGroups",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Application Services - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/appServices/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"appServices",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "Application Service Groups - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/appServiceGroups/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"appServiceGroups",
								"lite"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Forwarding Control Policy",
			"item": [
				{
					"name": "Dedicated IP Gateways",
					"item": [
						{
							"name": "Dedicated IP Gateways - Get lite",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/dedicatedIPGateways/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"dedicatedIPGateways",
										"lite"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Forwarding Control Rules",
					"item": [
						{
							"name": "Forwarding Control Rules - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/forwardingRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"forwardingRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Forwarding Control Rules - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/forwardingRules/196633",
									"host": [
										"{{url}}"
									],
									"path": [
										"forwardingRules",
										"196633"
									]
								}
							},
							"response": []
						},
						{
							"name": "Forwarding Control Rules - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n        \"accessControl\": \"READ_WRITE\",\n        \"name\": \"Your Rule Name\",\n        \"type\": \"FORWARDING\",\n        \"order\": 1,\n        \"rank\": 1,\n        \"forwardMethod\": \"DIRECT\"\n    \n    }"
								},
								"url": {
									"raw": "{{url}}/forwardingRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"forwardingRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Forwarding Control Rules - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"accessControl\": \"READ_WRITE\",\n    \"id\": 254329,\n    \"name\": \"Your Rule Name\",\n    \"type\": \"FORWARDING\",\n    \"order\": 1,\n    \"rank\": 7,\n    \"forwardMethod\": \"DIRECT\",\n    \"state\": \"ENABLED\"\n   \n}"
								},
								"url": {
									"raw": "{{url}}/forwardingRules/254329",
									"host": [
										"{{url}}"
									],
									"path": [
										"forwardingRules",
										"254329"
									]
								}
							},
							"response": []
						},
						{
							"name": "Forwarding Control Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/forwardingRules/254329",
									"host": [
										"{{url}}"
									],
									"path": [
										"forwardingRules",
										"254329"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Proxy Gateways",
					"item": [
						{
							"name": "Proxy Gateways - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/proxyGateways",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxyGateways"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Third-Party Proxies",
					"item": [
						{
							"name": "Proxies - Get",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/proxies",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxies"
									]
								}
							},
							"response": []
						},
						{
							"name": "Proxies - GET lite",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/proxies/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxies",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Proxies - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n        \"name\": \"Your Name\",\n        \"type\": \"PROXYCHAIN\",\n        \"address\": \"2.2.2.2\",\n        \"port\": 555,\n        \"insertXauHeader\": false,\n        \"base64EncodeXauHeader\": false\n       \n    }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/proxies",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxies"
									]
								}
							},
							"response": []
						},
						{
							"name": "Proxies - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 133163,\n    \"name\": \"YourName\",\n    \"type\": \"PROXYCHAIN\",\n    \"address\": \"2.2.2.2\",\n    \"port\": 555,\n    \"insertXauHeader\": false,\n    \"base64EncodeXauHeader\": false\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/proxies/133163",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxies",
										"133163"
									]
								}
							},
							"response": []
						},
						{
							"name": "Proxies - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/proxies/133163",
									"host": [
										"{{url}}"
									],
									"path": [
										"proxies",
										"133163"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "ZPA Gateways",
					"item": [
						{
							"name": "ZPA Gateways - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/zpaGateways",
									"host": [
										"{{url}}"
									],
									"path": [
										"zpaGateways"
									]
								}
							},
							"response": []
						},
						{
							"name": "ZPA Gateways - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/zpaGateways/418412",
									"host": [
										"{{url}}"
									],
									"path": [
										"zpaGateways",
										"418412"
									]
								}
							},
							"response": []
						},
						{
							"name": "ZPA Gateways - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n        \"name\": \"YourName\",\n        \"zpaServerGroup\": {            \n            \"name\": \"Your Server Group Name\",\n            \"externalId\": \"1234567890\"\n        \n        }\n     \n    }"
								},
								"url": {
									"raw": "{{url}}/zpaGateways",
									"host": [
										"{{url}}"
									],
									"path": [
										"zpaGateways"
									]
								}
							},
							"response": []
						},
						{
							"name": "ZPA Gateways - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"id\": 594407,\n    \"name\": \"YourName\",\n    \"zpaServerGroup\": {\n        \"name\": \"YourName\",\n        \"externalId\": \"1234567890\"\n    }\n}"
								},
								"url": {
									"raw": "{{url}}/zpaGateways/594407",
									"host": [
										"{{url}}"
									],
									"path": [
										"zpaGateways",
										"594407"
									]
								}
							},
							"response": []
						},
						{
							"name": "ZPA Gateways - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": ""
								},
								"url": {
									"raw": "{{url}}/zpaGateways/594407",
									"host": [
										"{{url}}"
									],
									"path": [
										"zpaGateways",
										"594407"
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "FTP Control Policy",
			"item": [
				{
					"name": "Ftp Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/ftpSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"ftpSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Ftp Settings - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"ftpOverHttpEnabled\": false,\n    \"ftpEnabled\": false,\n    \"urlCategories\": [\n        \"ANY\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/ftpSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"ftpSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Intermediate CA Certificates",
			"item": [
				{
					"name": "Intermediate CA Certificates - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Get by certificate ID",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/1",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Get ready-to-use certificates",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/readyToUse",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"readyToUse"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"name\":\"Your Cert Name \",\"type\":\"CUSTOM_SW\",\"region\":\"GLOBAL\",\"status\":\"ENABLED\"}"
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Generate key pair",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/keyPair/certId",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"keyPair",
								"certId"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Show key pair",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/downloadPublicKey/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"downloadPublicKey",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Verify key attestation",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/verifyKeyAttestation/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"verifyKeyAttestation",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Download key attestation",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/downloadAttestation/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"downloadAttestation",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Generate CSR",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"csrFileName\":\"YourFileName\",\n\"commName\":\"YourCommon_name\",\n\"orgName\":\"YourOrgName\",\n\"deptName\":\"YourDept\",\n\"city\":\"Your_City\",\n\"state\":\"Test\",\n\"country\":\"COUNTRY_AF\",\n\"keySize\":2048,\n\"pathLengthConstraint\":0,\n\"signatureAlgorithm\":\"SHA256\"}"
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/generateCsr/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"generateCsr",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Show CSR",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/showCsr/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"showCsr",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Download CSR",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/downloadCsr/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"downloadCsr",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Upload intermediate certificate",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "fileUpload",
									"type": "file",
									"src": []
								},
								{
									"key": "Content-Type",
									"value": "multipart/form-data",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/uploadCert/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"uploadCert",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Show certificate",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/showCert/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"showCert",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Upload intermediate certificate chain",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "formdata",
							"formdata": [
								{
									"key": "fileUpload",
									"type": "file",
									"src": []
								},
								{
									"key": "Content-Type",
									"value": "multipart/form-data",
									"type": "text"
								}
							]
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/uploadCertChain/cerid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"uploadCertChain",
								"cerid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Finalize certificate",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/finalizeCert/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"finalizeCert",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"name\":\"Your Cert Name Update \",\"type\":\"CUSTOM_SW\",\"region\":\"GLOBAL\",\"status\":\"ENABLED\"}"
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Make certificate as default",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/makeDefault/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"makeDefault",
								"certid"
							]
						}
					},
					"response": []
				},
				{
					"name": "Intermediate CA Certificates - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/intermediateCaCertificate/certid",
							"host": [
								"{{url}}"
							],
							"path": [
								"intermediateCaCertificate",
								"certid"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "IoT Report",
			"item": [
				{
					"name": "IoT Discovery - Get all device types",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/iotDiscovery/deviceTypes",
							"host": [
								"{{url}}"
							],
							"path": [
								"iotDiscovery",
								"deviceTypes"
							]
						}
					},
					"response": []
				},
				{
					"name": "IoT Discovery - Get all categories",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/iotDiscovery/categories",
							"host": [
								"{{url}}"
							],
							"path": [
								"iotDiscovery",
								"categories"
							]
						}
					},
					"response": []
				},
				{
					"name": "IoT Discovery - Get all classifications",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/iotDiscovery/classifications",
							"host": [
								"{{url}}"
							],
							"path": [
								"iotDiscovery",
								"classifications"
							]
						}
					},
					"response": []
				},
				{
					"name": "IoT Discovery - Get all device list",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/iotDiscovery/deviceList",
							"host": [
								"{{url}}"
							],
							"path": [
								"iotDiscovery",
								"deviceList"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "IPS Control Policy",
			"item": [
				{
					"name": "IPS Control Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/firewallIpsRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallIpsRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPS Control Rules - Get all Copy",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/firewallIpsRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallIpsRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPS Control Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Your Rule Name\",\n    \"description\": \"Description Create via Public API\",\n    \"action\": \"BLOCK_DROP\",\n    \"rank\": 1,\n    \"state\": \"ENABLED\",\n    \"order\": 1\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallIpsRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallIpsRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPS Control Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{    \"id\": 58919,\r\n    \"name\": \"Your Rule Name\",\r\n    \"description\": \"Description Create via Public API\",\r\n    \"action\": \"BLOCK_DROP\",\r\n    \"rank\": 1,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallIpsRules/58919",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallIpsRules",
								"58919"
							]
						}
					},
					"response": []
				},
				{
					"name": "IPS Control Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/firewallIpsRules/58919",
							"host": [
								"{{url}}"
							],
							"path": [
								"firewallIpsRules",
								"58919"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Location Management",
			"item": [
				{
					"name": "Location Groups",
					"item": [
						{
							"name": "Location Groups - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/locations/groups",
									"host": [
										"{{url}}"
									],
									"path": [
										"locations",
										"groups"
									]
								}
							},
							"response": []
						},
						{
							"name": "Location Groups - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/locations/groups/lite",
									"host": [
										"{{url}}"
									],
									"path": [
										"locations",
										"groups",
										"lite"
									]
								}
							},
							"response": []
						},
						{
							"name": "Location Groups - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/locations/groups/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"locations",
										"groups",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "Location Groups - Get total count",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/locations/groups/count",
									"host": [
										"{{url}}"
									],
									"path": [
										"locations",
										"groups",
										"count"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Locations - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/locations?page=1&pageSize=100",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations"
							],
							"query": [
								{
									"key": "page",
									"value": "1"
								},
								{
									"key": "pageSize",
									"value": "100"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/locations/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Get all IoT locations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/locations/lite?enableIOT=true",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"lite"
							],
							"query": [
								{
									"key": "enableIOT",
									"value": "true"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/locations/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "IP Addresses - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/ipAddresses",
							"host": [
								"{{url}}"
							],
							"path": [
								"ipAddresses"
							]
						}
					},
					"response": []
				},
				{
					"name": "GRE Tunnel IP Addresses - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/orgProvisioning/ipGreTunnelInfo",
							"host": [
								"{{url}}"
							],
							"path": [
								"orgProvisioning",
								"ipGreTunnelInfo"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Get Supported Countries",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/locations/supportedCountries",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"supportedCountries"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Add, Static IP",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"name\":\"chicago-hq-gre-1\",\n\t\"ipAddresses\": [\"26.9.19.83\"]\n}"
						},
						"url": {
							"raw": "{{url}}/locations",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Add, VPN Credentials",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"name\":\"sjc-1\",\n   \"vpnCredentials\":[\n      {\n         \"id\":12345,\n         \"type\":\"UFQDN\",\n         \"fqdn\":\"sjc-1-2-test@yourcompany.com\"\n      }\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/locations",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"name\":\"sjc-2\",\n   \"vpnCredentials\":[\n      {\n         \"id\":12345,\n         \"type\":\"UFQDN\",\n         \"fqdn\":\"sjc-1x-2-test@yourcompany.com\"\n      }\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/locations/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/locations/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Locations - Bulk delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"ids\":[1234,2345]}"
						},
						"url": {
							"raw": "{{url}}/locations/bulkDelete",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"bulkDelete"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sub-locations - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/locations/1234/sublocations",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"1234",
								"sublocations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sub-locations - Add",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"parentId\": 6793981,\n\t\"name\":\"guest-wifi\",\n\t\"ipAddresses\": [\"10.131.2.128-10.131.3.255\"]\n}\n",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/locations",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sub-locations - Update",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n\t\"parentId\": 6793981,\n\t\"name\":\"guest-wifi\",\n\t\"ipAddresses\": [\"10.131.2.128-10.131.3.255\"],\n\t\"sslScanEnabled\": \"true\"\n}\n",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/locations/6793982",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"6793982"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sub-locations - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/locations/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"locations",
								"1234"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Malware Protection Policy",
			"item": [
				{
					"name": "Malware Protection - Get traffic inspection configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/cyberThreatProtection/atpMalwareInspection",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"atpMalwareInspection"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Update traffic inspection configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"inspectInbound\": false,\r\n    \"inspectOutbound\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/atpMalwareInspection",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"atpMalwareInspection"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Get protocol inspection configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"aupFrequency\": \"WEEKLY\",\r\n    \"aupDayOffset\": 0,\r\n    \"aupMessage\": \"<html>\\n</html>\",\r\n    \"notificationType\": \"CUSTOM\",\r\n    \"displayReason\": false,\r\n    \"displayCompName\": false,\r\n    \"displayCompLogo\": false,\r\n    \"customText\": \"Website blockedxx\",\r\n    \"urlCatReviewEnabled\": true,\r\n    \"urlCatReviewSubmitToSecurityCloud\": false,\r\n    \"urlCatReviewCustomLocation\": \"http://hekx.c\",\r\n    \"urlCatReviewText\": \"If you believe you received this message in error, please click here to request a review of this site.x\",\r\n    \"securityReviewEnabled\": true,\r\n    \"securityReviewSubmitToSecurityCloud\": false,\r\n    \"securityReviewCustomLocation\": \"http://d.ldd\",\r\n    \"securityReviewText\": \"Click to request security review.x2\",\r\n    \"webDlpReviewEnabled\": true,\r\n    \"webDlpReviewSubmitToSecurityCloud\": false,\r\n    \"webDlpReviewCustomLocation\": \"http://dsf.fs\",\r\n    \"webDlpReviewText\": \"Click to request policy review.x3\",\r\n    \"redirectUrl\": \"https://www.xxgoxxogldf.dfd\",\r\n    \"supportEmail\": \"support2@org.ccom\",\r\n    \"supportPhone\": \"1234567891\",\r\n    \"orgPolicyLink\": \"http://org.com/policy.html\",\r\n    \"cautionAgainAfter\": 3600,\r\n    \"cautionPerDomain\": true,\r\n    \"cautionCustomText\": \"Proceeding to visit the site may violate your company policy. Press the \\\"Continue\\\" button to access the site anyway or press the \\\"Back\\\" button on your browser to go backxxxx\",\r\n    \"idpProxyNotificationText\": \"fdsfssssssssss2112\",\r\n    \"quarantineCustomNotificationText\": \"We are checking this file for a potential security risk. The file you attempted to download is being analyzed for your protection. It is not blocked. The analysis can take up to 10 minutes, depending on the size and type of the file. If safe, your file downloads automatically. If unsafe, the file will be blocked.dssd\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/atpMalwareProtocols",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"atpMalwareProtocols"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Get protocol inspection configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"inspectHttp\": true,\r\n    \"inspectFtpOverHttp\": true,\r\n    \"inspectFtp\": true\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/atpMalwareProtocols",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"atpMalwareProtocols"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Get policy configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"inspectHttp\": false,\r\n    \"inspectFtpOverHttp\": true,\r\n    \"inspectFtp\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/malwareSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"malwareSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Update policy configurations",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"virusBlocked\": true,\r\n    \"virusCapture\": false,\r\n    \"unwantedApplicationsBlocked\": false,\r\n    \"unwantedApplicationsCapture\": false,\r\n    \"trojanBlocked\": false,\r\n    \"trojanCapture\": false,\r\n    \"wormBlocked\": false,\r\n    \"wormCapture\": false,\r\n    \"adwareBlocked\": false,\r\n    \"adwareCapture\": false,\r\n    \"spywareBlocked\": false,\r\n    \"spywareCapture\": false,\r\n    \"ransomwareBlocked\": false,\r\n    \"ransomwareCapture\": false,\r\n    \"remoteAccessToolBlocked\": true,\r\n    \"remoteAccessToolCapture\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/malwareSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"malwareSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Get security exceptions",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/malwarePolicy",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"malwarePolicy"
							]
						}
					},
					"response": []
				},
				{
					"name": "Malware Protection - Update security exceptions",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"blockUnscannableFiles\": true,\n    \"blockPasswordProtectedArchiveFiles\": true\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/cyberThreatProtection/malwarePolicy",
							"host": [
								"{{url}}"
							],
							"path": [
								"cyberThreatProtection",
								"malwarePolicy"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Mobile Malware Protection Policy",
			"item": [
				{
					"name": "Mobile Advance Threat Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/mobileAdvanceThreatSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"mobileAdvanceThreatSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Mobile Advance Threat Settings -  Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"blockAppsWithMaliciousActivity\": true,\n    \"blockAppsWithKnownVulnerabilities\": true,\n    \"blockAppsSendingUnencryptedUserCredentials\": false,\n    \"blockAppsSendingLocationInfo\": false,\n    \"blockAppsSendingPersonallyIdentifiableInfo\": false,\n    \"blockAppsSendingDeviceIdentifier\": false,\n    \"blockAppsCommunicatingWithAdWebsites\": false,\n    \"blockAppsCommunicatingWithRemoteUnknownServers\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/mobileAdvanceThreatSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"mobileAdvanceThreatSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "NAT Control Policy",
			"item": [
				{
					"name": "Dnat Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/dnatRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"dnatRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Dnat Rules - Get by ID",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/dnatRules/21613",
							"host": [
								"{{url}}"
							],
							"path": [
								"dnatRules",
								"21613"
							]
						}
					},
					"response": []
				},
				{
					"name": "Dnat Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\"defaultRule\":false,\"state\":\"ENABLED\",\"rank\":7,\"name\":\"Test Payload\",\"order\":5,\"description\":\"Test Payload\",\"redirectPort\":\"224\",\"redirectIp\":\"1.2.3.4\"}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/dnatRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"dnatRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Dnat Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"action\": \"ALLOW\",\n    \"id\": 166391,\n    \"name\": \"Test Payload\",\n    \"order\": 5,\n    \"rank\": 7,\n    \"description\": \"Test Payload\",\n    \"state\": \"ENABLED\",\n    \"destIpCategories\": [\n        \"ANY\"\n    ],\n    \"redirectIp\": \"1.2.3.4\",\n    \"redirectPort\": 224,\n    \"trustedResolverRule\": false,\n    \"predefined\": false,\n    \"enableFullLogging\": false,\n    \"defaultRule\": false\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/dnatRules/166391",
							"host": [
								"{{url}}"
							],
							"path": [
								"dnatRules",
								"166391"
							]
						}
					},
					"response": []
				},
				{
					"name": "Dnat Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/dnatRules/166391",
							"host": [
								"{{url}}"
							],
							"path": [
								"dnatRules",
								"166391"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Organization Details",
			"item": [
				{
					"name": "Subscriptions",
					"item": [
						{
							"name": "Subscriptions - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/subscriptions",
									"host": [
										"{{url}}"
									],
									"path": [
										"subscriptions"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Organization Information - Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/orgInformation",
							"host": [
								"{{url}}"
							],
							"path": [
								"orgInformation"
							]
						}
					},
					"response": []
				},
				{
					"name": "Organization Information - Get (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "",
								"value": "",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/orgInformation/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"orgInformation",
								"lite"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "PAC Files",
			"item": [
				{
					"name": "PAC Files - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/pacFiles",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/pacFiles/154/version",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles",
								"154",
								"version"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Get all versions for a file",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/pacFiles/154/version/1",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles",
								"154",
								"version",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Validate",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "function FindProxyForURL(url, host) {\r\n    \r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/pacFiles/validate",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles",
								"validate"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"pacContent\": \"function FindProxyForURL(url, host) {}\",\r\n    \"name\": \"YourPacFileName\",\r\n    \"description\": \"Desc\",\r\n    \"domain\": \"yourdomain.com\",\r\n    \"pacCommitMessage\": \"Commit Message\",\r\n    \"editable\": true,\r\n    \"pacUrlObfuscated\": true,\r\n    \"pacVerificationStatus\": \"VERIFY_NOERR\"\r\n\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/pacFiles",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Add new version",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\"pacContent\":\"function FindProxyForURL(url, host) {}\",\"pacVerificationStatus\":\"VERIFY_ERR\",\"pacCommitMessage\":\"Commit Message\"}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/pacFiles/295/version/1",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles",
								"295",
								"version",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "PAC Files - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/pacFiles/295",
							"host": [
								"{{url}}"
							],
							"path": [
								"pacFiles",
								"295"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "SaaS Security API",
			"item": [
				{
					"name": "DLP Rules",
					"item": [
						{
							"name": "Casb Dlp Rules - Get by rule type",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbDlpRules?ruleType=OFLCASB_DLP_FILE",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules"
									],
									"query": [
										{
											"key": "ruleType",
											"value": "OFLCASB_DLP_FILE"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Dlp Rules - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbDlpRules/all",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules",
										"all"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Dlp Rules - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbDlpRules/122641",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules",
										"122641"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Dlp Rules - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"auth": {
									"type": "bearer",
									"bearer": [
										{
											"key": "token",
											"value": "eyJraWQiOiJtMWthaG5tZWVnNmd0IiwidHlwIjoiSldUIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJpcHBhdGxiZm0wNmd0IiwiYXVkIjpbIlpQQS56cGFiZXRhLm5ldCIsIlpEWC56ZHhiZXRhLm5ldCIsImh0dHBzOi8vYXBpLnpzY2FsZXIuY29tIiwiQ0xPVURfQ09OTkVDVE9SLnpzY2FsZXJiZXRhLm5ldCIsIlpJQU0ub25lYXBpLnpzbG9naW5iZXRhLm5ldCIsIlpDQy56c2NhbGVyYmV0YS5uZXQiLCJaSUEuenNjYWxlcmJldGEubmV0Il0sIm5iZiI6MTczMjY4NjcyOSwic2VydmljZS1pbmZvIjpbeyJjYXQiOiJjb25maWciLCJwcmQiOiJaSUFNIiwiY2xkIjoib25lYXBpLnpzbG9naW5iZXRhLm5ldCIsInRudCI6Imdoa2Fobm04MzA2ZnAiLCJwY3QiOiJjb25maWciLCJleHQiOnsicmlkIjoiOWg2cDdlYnY5MDNrNCIsInJubSI6IlN1cGVyIEFkbWluIn19LHsiY2F0IjoiY29uZmlnIiwicHJkIjoiWkNDIiwiY2xkIjoienNjYWxlcmJldGEubmV0IiwidG50IjoiMTkwMjU3MDUiLCJwY3QiOiJjb25maWciLCJleHQiOnsicmlkIjoiMSIsInJubSI6IlN1cGVyIEFkbWluIn19LHsiY2F0IjoiY29uZmlnIiwicHJkIjoiQ0xPVURfQ09OTkVDVE9SIiwiY2xkIjoienNjYWxlcmJldGEubmV0IiwidG50IjoienNjYWxlcmJldGEubmV0LjE5MDI1NzA1IiwicGN0IjoiY29uZmlnIiwiZXh0Ijp7InJpZCI6IjMzODc4Iiwicm5tIjoiU3VwZXIgQWRtaW4ifX0seyJjYXQiOiJjb25maWciLCJwcmQiOiJaRFgiLCJjbGQiOiJ6ZHhiZXRhLm5ldCIsInRudCI6InpzY2FsZXJiZXRhLm5ldC4xOTAyNTcwNSIsInBjdCI6ImNvbmZpZyIsImV4dCI6eyJyaWQiOiIzMDM3MSIsInJubSI6IlpEWCBTdXBlciBBZG1pbiJ9fSx7ImNhdCI6ImNvbmZpZyIsInByZCI6IlpJQSIsImNsZCI6InpzY2FsZXJiZXRhLm5ldCIsInRudCI6IjE5MDI1NzA1IiwicGN0IjoiY29uZmlnIiwiZXh0Ijp7InJpZCI6IjM0MDY2Iiwicm5tIjoia2FyYW5kZWVwIHRlc3QgYmV0YSJ9fSx7ImNhdCI6ImNvbmZpZyIsInByZCI6IlpQQSIsImNsZCI6InpwYWJldGEubmV0IiwidG50IjoiNzIwNTkzNzAwMDY5MDQ4MzIiLCJwY3QiOiJjb25maWciLCJleHQiOnsicmlkIjoiMjgiLCJybm0iOiJBUEkgQ2xpZW50Iiwic2lkIjoiRGVmYXVsdCIsInNubSI6IkRlZmF1bHQifX1dLCJpc3MiOiJodHRwczovL29uZWFwaS56c2xvZ2luYmV0YS5uZXQiLCJ0ZW5hbnRJZCI6Imdoa2Fobm04MzA2ZnAiLCJleHAiOjE3MzI3NDY3MjksImlhdCI6MTczMjY4NjcyOSwianRpIjoiOGI3NjA1YTMtNDU5Yi00ZDJiLThlYjYtZWRhMmVhM2FjZjAwIiwiY2xpZW50X2lkIjoiaXBwYXRsYmZtMDZndCJ9.fVXn_W4XwCG7kJvtq5risKCguPAtLPjCSIaT5rW66UtMKw6LarRzWYpjMMwhYVeOS0ecDgNjQ8fs5IEIWZDd7gqNrupWVsuUAQscTlpqQtSa6kar-nQl1z4BvdpXhr2pHrBq4Jnt-um_sQydhNtQKi9lf1h0AkEmJs3N3365MH0yBiDlJGs3cEt631zjN4Xe8GtlUrdjkYNv93QqAN_JlZ60b9LMWOlkL1CxX_9HY49bRfhgEh1jD2qRuakfl1Jog4LChzwiJt9SpWX63jeuJvx--82jtGhs090D7grdXQjaMvp64OVuCYVhlWcyNzPc4QScL7MQ4H_8H1nxeYBV5g",
											"type": "string"
										}
									]
								},
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n\r\n    \"name\": \"YourName\",\r\n    \"description\": \"Description\",\r\n    \"action\": {\r\n        \"showEUN\": false,\r\n        \"type\": \"BLOCK\",\r\n        \"overrideDefaultCertificate\": false,\r\n        \"showEUNATP\": false\r\n    },\r\n    \"rank\": 7,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbDlpRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Dlp Rules - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"type\": \"OFLCASB_DLP_FILE\",\r\n    \"id\": 60409,\r\n    \"order\": 4,\r\n    \"rank\": 7,\r\n    \"name\": \"Test RUle\",\r\n    \"state\": \"ENABLED\",\r\n    \"cloudAppTenants\": [\r\n        {\r\n            \"id\": 568787,\r\n            \"name\": \"Test\"\r\n        }\r\n    ],\r\n    \"dlpEngines\": [],\r\n    \"action\": \"OFLCASB_DLP_SHARE_READ_ONLY\",\r\n    \"severity\": \"RULE_SEVERITY_LOW\",\r\n    \"collaborationScope\": [\r\n        \"ANY\"\r\n    ],\r\n    \"accessControl\": \"READ_WRITE\",\r\n    \"watermarkDeleteOldVersion\": false,\r\n    \"includeCriteriaDomainProfile\": false,\r\n    \"includeEmailRecipientProfile\": false,\r\n    \"withoutContentInspection\": false,\r\n    \"includeEntityGroups\": false\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbDlpRules/60409",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules",
										"60409"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Dlp Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbDlpRules/60409?ruleType=OFLCASB_DLP_FILE",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbDlpRules",
										"60409"
									],
									"query": [
										{
											"key": "ruleType",
											"value": "OFLCASB_DLP_FILE"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Malware Detection Rules",
					"item": [
						{
							"name": "Casb Malware Rules - Get by rule type",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbMalwareRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Malware Rules - GET all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbMalwareRules/all",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules",
										"all"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Malware Rules - Get by ID",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/casbMalwareRules/122641",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules",
										"122641"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Malware Rules - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"type\" : \"OFLCASB_AVP_FILE\",\r\n  \"name\" : \"Test\",\r\n  \"cloudAppTenants\" : [ {\r\n    \"id\" : 568787,\r\n    \"name\" : \"Test\"\r\n  } ],\r\n  \"state\" : \"ENABLED\",\r\n  \"action\" : \"OFLCASB_AVP_REMOVE\",  \"order\": 1,\r\n    \"rank\": 7\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbMalwareRules",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Malware Rules - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n    \"type\": \"OFLCASB_AVP_FILE\",\r\n    \"id\": 60408,\r\n    \"order\": 1,\r\n    \"name\": \"Test\",\r\n    \"cloudAppTenants\": [\r\n        {\r\n            \"id\": 568787,\r\n            \"name\": \"Test\"\r\n        }\r\n    ],\r\n    \"state\": \"ENABLED\",\r\n    \"action\": \"OFLCASB_AVP_REMOVE\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbMalwareRules/60408",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules",
										"60408"
									]
								}
							},
							"response": []
						},
						{
							"name": "Casb Malware Rules - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript",
										"packages": {}
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/casbMalwareRules/60408?ruleType=OFLCASB_AVP_FILE",
									"host": [
										"{{url}}"
									],
									"path": [
										"casbMalwareRules",
										"60408"
									],
									"query": [
										{
											"key": "ruleType",
											"value": "OFLCASB_AVP_FILE"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "Security Policy Settings",
			"item": [
				{
					"name": "Allowlist URLs - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/security",
							"host": [
								"{{url}}"
							],
							"path": [
								"security"
							]
						}
					},
					"response": []
				},
				{
					"name": "Allowlist URLs - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"whitelistUrls\":[  \n      \"wellsfargo.com\",\n      \"paypal.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/security",
							"host": [
								"{{url}}"
							],
							"path": [
								"security"
							]
						}
					},
					"response": []
				},
				{
					"name": "Denylist URLs - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/security/advanced",
							"host": [
								"{{url}}"
							],
							"path": [
								"security",
								"advanced"
							]
						}
					},
					"response": []
				},
				{
					"name": "Denylist URLs - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"blacklistUrls\":[  \n      \"facebook.com\",\n      \"tinder.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/security/advanced",
							"host": [
								"{{url}}"
							],
							"path": [
								"security",
								"advanced"
							]
						}
					},
					"response": []
				},
				{
					"name": "Denylist URLs - Add incr",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"blacklistUrls\":[  \n      \"snapchat.com\",\n      \"tinder.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/security/advanced/blacklistUrls?action=ADD_TO_LIST",
							"host": [
								"{{url}}"
							],
							"path": [
								"security",
								"advanced",
								"blacklistUrls"
							],
							"query": [
								{
									"key": "action",
									"value": "ADD_TO_LIST"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Denylist URLs - Delete incr",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"blacklistUrls\":[  \n      \"snapchat.com\",\n      \"instagram.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/security/advanced/blacklistUrls?action=REMOVE_FROM_LIST",
							"host": [
								"{{url}}"
							],
							"path": [
								"security",
								"advanced",
								"blacklistUrls"
							],
							"query": [
								{
									"key": "action",
									"value": "REMOVE_FROM_LIST"
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Policy Export",
			"item": [
				{
					"name": "Policies - Export",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "[\r\n        \"BA\",\r\n        \"FILETYPE_CONTROL\",\r\n        \"BANDWIDTH_CONTROL\",\r\n        \"MOBILE_APP_RULE\",\r\n        \"URL_FILTERING\",\r\n        \"CUSTOM_CAPP\",\r\n        \"FIREWALL\",\r\n        \"DNAT\",\r\n        \"DNS\",\r\n        \"INTRUSION_PREVENTION\",\r\n        \"EMAIL_DLP\",\r\n        \"WEB_DLP\",\r\n        \"FORWARDING\"\r\n    ]",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/exportPolicies",
							"host": [
								"{{url}}"
							],
							"path": [
								"exportPolicies"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Remote Assistance Support",
			"item": [
				{
					"name": "Remote Assistance Preferences - Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/remoteAssistance",
							"host": [
								"{{url}}"
							],
							"path": [
								"remoteAssistance"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remote Assistance Preferences - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"viewOnlyUntil\": \"1732192127572\",\r\n    \"usernameObfuscated\": true,\r\n    \"fullAccessUntil\": \"1732192127572\",\r\n    \"deviceInfoObfuscate\": true\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/remoteAssistance",
							"host": [
								"{{url}}"
							],
							"path": [
								"remoteAssistance"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Rule Labels",
			"item": [
				{
					"name": "Rule Labels - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/ruleLabels",
							"host": [
								"{{url}}"
							],
							"path": [
								"ruleLabels"
							]
						}
					},
					"response": []
				},
				{
					"name": "Rule Labels - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/ruleLabels/54079",
							"host": [
								"{{url}}"
							],
							"path": [
								"ruleLabels",
								"54079"
							]
						}
					},
					"response": []
				},
				{
					"name": "Rule Labels - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": " {\r\n        \r\n        \"name\": \"Your Name\",\r\n        \"description\": \"Your description\"\r\n\r\n    \r\n    }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/ruleLabels",
							"host": [
								"{{url}}"
							],
							"path": [
								"ruleLabels"
							]
						}
					},
					"response": []
				},
				{
					"name": "Rule Labels - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 64147,\r\n    \"name\": \"Your Name\",\r\n    \"description\": \"Your description\"\r\n   \r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/ruleLabels/64147",
							"host": [
								"{{url}}"
							],
							"path": [
								"ruleLabels",
								"64147"
							]
						}
					},
					"response": []
				},
				{
					"name": "Rule Labels - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/ruleLabels/64147",
							"host": [
								"{{url}}"
							],
							"path": [
								"ruleLabels",
								"64147"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Sandbox Policy & Settings",
			"item": [
				{
					"name": "Sandbox Settings",
					"item": [
						{
							"name": "Custom MD5 Hash Values - Get full",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/behavioralAnalysisAdvancedSettings",
									"host": [
										"{{url}}"
									],
									"path": [
										"behavioralAnalysisAdvancedSettings"
									]
								}
							},
							"response": []
						},
						{
							"name": "Custom MD5 Hash Values - Update MD5 list",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\"fileHashesToBeBlocked\":[\"4EE43B71BB89CB9CBF7784495AE8D0DF\",\"8350dED6D39DF158E51D6CFBE36FB012\"]}"
								},
								"url": {
									"raw": "{{url}}/behavioralAnalysisAdvancedSettings",
									"host": [
										"{{url}}"
									],
									"path": [
										"behavioralAnalysisAdvancedSettings"
									]
								}
							},
							"response": []
						},
						{
							"name": "Custom MD5 Hash Values - Get quota",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/behavioralAnalysisAdvancedSettings/fileHashCount",
									"host": [
										"{{url}}"
									],
									"path": [
										"behavioralAnalysisAdvancedSettings",
										"fileHashCount"
									]
								}
							},
							"response": []
						}
					],
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						},
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					]
				},
				{
					"name": "Sandbox Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/sandboxRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandboxRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Rules - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/sandboxRules/12",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandboxRules",
								"12"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"name\": \"Your Name\",\n    \"description\": \"Desc Create via Public API\",\n    \"rank\": 1,\n    \"state\": \"ENABLED\",\n    \"protocols\": [\n        \"FOHTTP_RULE\"\n    ],\n    \"baPolicyCategories\": [\n        \"ADWARE_BLOCK\"\n    ],\n    \"baRuleAction\": \"BLOCK\",\n    \"order\": 1,\n    \"fileTypes\": [\n        \"FTCATEGORY_BZIP2\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sandboxRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandboxRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{    \"id\": 58921,\r\n\r\n    \"name\": \"Your Name\",\r\n    \"description\": \"Desc Create via Public API\",\r\n    \"rank\": 1,\r\n    \"state\": \"ENABLED\",\r\n    \"protocols\": [\r\n        \"FOHTTP_RULE\"\r\n    ],\r\n    \"baPolicyCategories\": [\r\n        \"ADWARE_BLOCK\"\r\n    ],\r\n    \"baRuleAction\": \"BLOCK\",\r\n    \"order\": 1,\r\n    \"fileTypes\": [\r\n        \"FTCATEGORY_BZIP2\"\r\n    ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sandboxRules/58921",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandboxRules",
								"58921"
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sandboxRules/58921",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandboxRules",
								"58921"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Sandbox Report",
			"item": [
				{
					"name": "Sandbox Report - Get full",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/sandbox/report/8350dED6D39DF158E51D6CFBE36FB012?details=full",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandbox",
								"report",
								"8350dED6D39DF158E51D6CFBE36FB012"
							],
							"query": [
								{
									"key": "details",
									"value": "full"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Report - Get summary",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/sandbox/report/4EE43B71BB89CB9CBF7784495AE8D0DF?details=summary",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandbox",
								"report",
								"4EE43B71BB89CB9CBF7784495AE8D0DF"
							],
							"query": [
								{
									"key": "details",
									"value": "summary"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Sandbox Report - Get quota",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/sandbox/report/quota",
							"host": [
								"{{url}}"
							],
							"path": [
								"sandbox",
								"report",
								"quota"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "Service Edges",
			"item": [
				{
					"name": "Virtual Zen Clusters - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/virtualZenClusters",
							"host": [
								"{{url}}"
							],
							"path": [
								"virtualZenClusters"
							]
						}
					},
					"response": []
				},
				{
					"name": "Virtual Zen Clusters - Get by ID",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/virtualZenClusters/123",
							"host": [
								"{{url}}"
							],
							"path": [
								"virtualZenClusters",
								"123"
							]
						}
					},
					"response": []
				},
				{
					"name": "Virtual Zen Clusters - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\"status\":\"ENABLED\",\"ipSecEnabled\":false,\"name\":\"test\",\"ipAddress\":\"1.23.4.5\",\"subnetMask\":\"2.2.2.2\",\"defaultGateway\":\"3.3.3.3\"}\n",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/virtualZenClusters",
							"host": [
								"{{url}}"
							],
							"path": [
								"virtualZenClusters"
							]
						}
					},
					"response": []
				},
				{
					"name": "Virtual Zen Clusters - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"id\": 1348,\r\n    \"name\": \"test\",\r\n    \"status\": \"ENABLED\",\r\n    \"inProduction\": false,\r\n    \"ipAddress\": \"1.23.4.5\",\r\n    \"subnetMask\": \"2.2.2.2\",\r\n    \"defaultGateway\": \"3.3.3.3\",\r\n    \"ipSecEnabled\": false,\r\n    \"onDemandSupportTunnelEnabled\": false,\r\n    \"establishSupportTunnelEnabled\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/virtualZenClusters/1348",
							"host": [
								"{{url}}"
							],
							"path": [
								"virtualZenClusters",
								"1348"
							]
						}
					},
					"response": []
				},
				{
					"name": "Virtual Zen Clusters - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/virtualZenClusters/1348",
							"host": [
								"{{url}}"
							],
							"path": [
								"virtualZenClusters",
								"1348"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Shadow IT Report",
			"item": [
				{
					"name": "Cloud Applications",
					"item": [
						{
							"name": "Cloud Applications - Get all (lite)",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/cloudApplications/lite?pageNumber=0&limit=100",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplications",
										"lite"
									],
									"query": [
										{
											"key": "pageNumber",
											"value": "0"
										},
										{
											"key": "limit",
											"value": "100"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Cloud Applications - Bulk update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n   \"applicationIds\": [12345],\r\n  \"sanctionedState\": \"SANCTIONED\",\r\n  \"customTags\": [\r\n{\r\n      \"id\": 1\r\n    }\r\n  ]\r\n}\r\n",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/cloudApplications/bulkUpdate",
									"host": [
										"{{url}}"
									],
									"path": [
										"cloudApplications",
										"bulkUpdate"
									]
								}
							},
							"response": []
						},
						{
							"name": "Custom Tags - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/customTags",
									"host": [
										"{{url}}"
									],
									"path": [
										"customTags"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Shadow IT Report - Cloud applications",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"duration\":\"LAST_7_DAYS\"}"
						},
						"url": {
							"raw": "{{url}}/shadowIT/applications/export",
							"host": [
								"{{url}}"
							],
							"path": [
								"shadowIT",
								"applications",
								"export"
							]
						}
					},
					"response": []
				},
				{
					"name": "Shadow IT Report - Users for a cloud application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"duration\":\"LAST_7_DAYS\",\"application\":[\"ONSHAPE\"]}"
						},
						"url": {
							"raw": "{{url}}/shadowIT/applications/USER/exportCsv",
							"host": [
								"{{url}}"
							],
							"path": [
								"shadowIT",
								"applications",
								"USER",
								"exportCsv"
							]
						}
					},
					"response": []
				},
				{
					"name": "Shadow IT Report - Locations for a cloud application",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"duration\":\"LAST_7_DAYS\",\"application\":[\"ONSHAPE\"]}"
						},
						"url": {
							"raw": "{{url}}/shadowIT/applications/LOCATION/exportCsv",
							"host": [
								"{{url}}"
							],
							"path": [
								"shadowIT",
								"applications",
								"LOCATION",
								"exportCsv"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "SSL Inspection Policy",
			"item": [
				{
					"name": "sslInspectionRules",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/sslInspectionRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"sslInspectionRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "sslInspectionRules/{id}",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/sslInspectionRules/122641",
							"host": [
								"{{url}}"
							],
							"path": [
								"sslInspectionRules",
								"122641"
							]
						}
					},
					"response": []
				},
				{
					"name": "sslInspectionRules",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n\r\n    \"name\": \"YourName\",\r\n    \"description\": \"Description\",\r\n    \"action\": {\r\n        \"showEUN\": false,\r\n        \"type\": \"BLOCK\",\r\n        \"overrideDefaultCertificate\": false,\r\n        \"showEUNATP\": false\r\n    },\r\n    \"rank\": 0,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sslInspectionRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"sslInspectionRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "sslInspectionRules",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n        \"id\": 58918,\r\n\r\n    \"name\": \"YourName\",\r\n    \"description\": \"Description\",\r\n    \"action\": {\r\n        \"showEUN\": false,\r\n        \"type\": \"BLOCK\",\r\n        \"overrideDefaultCertificate\": false,\r\n        \"showEUNATP\": false\r\n    },\r\n    \"rank\": 0,\r\n    \"state\": \"ENABLED\",\r\n    \"order\": 1\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sslInspectionRules/58918",
							"host": [
								"{{url}}"
							],
							"path": [
								"sslInspectionRules",
								"58918"
							]
						}
					},
					"response": []
				},
				{
					"name": "sslInspectionRules",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/sslInspectionRules/139252",
							"host": [
								"{{url}}"
							],
							"path": [
								"sslInspectionRules",
								"139252"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "System Audit Report",
			"item": [
				{
					"name": "Config Audit - Get",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/configAudit",
							"host": [
								"{{url}}"
							],
							"path": [
								"configAudit"
							]
						}
					},
					"response": []
				},
				{
					"name": "Config Audit - Get Pac File",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/configAudit/pacFile",
							"host": [
								"{{url}}"
							],
							"path": [
								"configAudit",
								"pacFile"
							]
						}
					},
					"response": []
				},
				{
					"name": "Config Audit - Get Ip Visiblility",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/configAudit/ipVisibility",
							"host": [
								"{{url}}"
							],
							"path": [
								"configAudit",
								"ipVisibility"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Time Intervals",
			"item": [
				{
					"name": "Time Intervals - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/timeIntervals",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeIntervals"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Intervals - Get by ID",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/timeIntervals/111",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeIntervals",
								"111"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Intervals - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n        \"name\": \"Your Time interval\",\n        \"startTime\": 0,\n        \"endTime\": 1439,\n        \"daysOfWeek\": [\n            \"SUN\",\n            \"MON\",\n            \"TUE\",\n            \"WED\",\n            \"THU\",\n            \"FRI\",\n            \"SAT\"\n        ]\n    }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/timeIntervals",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeIntervals"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Intervals - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": 253,\n    \"name\": \"Your Time interval\",\n    \"startTime\": 0,\n    \"endTime\": 1439,\n    \"daysOfWeek\": [\n        \"SUN\",\n        \"MON\",\n        \"TUE\",\n        \"WED\",\n        \"THU\",\n        \"FRI\",\n        \"SAT\"\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/timeIntervals/253",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeIntervals",
								"253"
							]
						}
					},
					"response": []
				},
				{
					"name": "Time Intervals - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/timeIntervals/253",
							"host": [
								"{{url}}"
							],
							"path": [
								"timeIntervals",
								"253"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Traffic Forwarding",
			"item": [
				{
					"name": "VPN Credentials",
					"item": [
						{
							"name": "VPN Credentials - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"type": "text/javascript",
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										]
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/vpnCredentials",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials"
									]
								}
							},
							"response": []
						},
						{
							"name": "VPN Credentials - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/vpnCredentials/1234",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials",
										"1234"
									]
								}
							},
							"response": []
						},
						{
							"name": "VPN Credentials - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "  {\n    \"type\": \"UFQDN\",\n    \"fqdn\": \"sjc-1-37@yourcompany.com\",\n    \"comments\":\"created automatically\",\n    \"preSharedKey\":\"newPassword123!\"\n  }"
								},
								"url": {
									"raw": "{{url}}/vpnCredentials",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials"
									]
								}
							},
							"response": []
						},
						{
							"name": "VPN Credentials - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "  {\n    \"type\": \"UFQDN\",\n    \"fqdn\": \"sjc-1-37@yourcompany.com\",\n    \"comments\":\"created automatically\",\n    \"preSharedKey\":\"newPassword123!\"\n  }"
								},
								"url": {
									"raw": "{{url}}/vpnCredentials/1234",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials",
										"1234"
									]
								}
							},
							"response": []
						},
						{
							"name": "VPN Credentials - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "formdata",
									"formdata": []
								},
								"url": {
									"raw": "{{url}}/vpnCredentials/1234",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials",
										"1234"
									]
								}
							},
							"response": []
						},
						{
							"name": "VPN Credentials - Bulk delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\"ids\":[1234,2345]}"
								},
								"url": {
									"raw": "{{url}}/vpnCredentials/bulkDelete",
									"host": [
										"{{url}}"
									],
									"path": [
										"vpnCredentials",
										"bulkDelete"
									]
								}
							},
							"response": []
						}
					],
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						},
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					]
				},
				{
					"name": "Data Center VIPs",
					"item": [
						{
							"name": "Data Center VIPs - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/vips",
									"host": [
										"{{url}}"
									],
									"path": [
										"vips"
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Get available VIPs grouped by data center",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/vips/groupByDatacenter?sourceIp=1.2.3.4&publicDcLimit=5&privateDcLimit=5",
									"host": [
										"{{url}}"
									],
									"path": [
										"vips",
										"groupByDatacenter"
									],
									"query": [
										{
											"key": "sourceIp",
											"value": "1.2.3.4"
										},
										{
											"key": "publicDcLimit",
											"value": "5"
										},
										{
											"key": "privateDcLimit",
											"value": "5"
										}
									]
								}
							},
							"response": []
						}
					],
					"event": [
						{
							"listen": "prerequest",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						},
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									""
								]
							}
						}
					]
				},
				{
					"name": "GRE Tunnels",
					"item": [
						{
							"name": "GRE Tunnels - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels"
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Get available IPs",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP?availableForGreTunnel=true",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP"
									],
									"query": [
										{
											"key": "availableForGreTunnel",
											"value": "true"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Get available VIPs",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/vips/recommendedList?routableIP=true&sourceIp=4.4.4.4&geoOverride=false",
									"host": [
										"{{url}}"
									],
									"path": [
										"vips",
										"recommendedList"
									],
									"query": [
										{
											"key": "routableIP",
											"value": "true"
										},
										{
											"key": "sourceIp",
											"value": "4.4.4.4"
										},
										{
											"key": "geoOverride",
											"value": "false"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Get available internal GRE IP ranges",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"protocolProfileBehavior": {
								"disableBodyPruning": true
							},
							"request": {
								"method": "GET",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels/availableInternalIpRanges?staticIp=1.2.3.4&limit=10",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels",
										"availableInternalIpRanges"
									],
									"query": [
										{
											"key": "staticIp",
											"value": "1.2.3.4"
										},
										{
											"key": "limit",
											"value": "10"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Add",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": " {\r\n      \r\n        \"sourceIp\": \"4.4.4.4\",\r\n        \"primaryDestVip\": {\r\n            \"id\": 123,\r\n            \"virtualIp\": \"10.66.68.68\"  \r\n        },\r\n        \"secondaryDestVip\": {\r\n            \"id\": 123,\r\n            \"virtualIp\": \"10.66.68.68\"  \r\n        },\r\n        \"internalIpRange\": \"172.17.0.216\",\r\n        \"ipUnnumbered\": false,\r\n        \"comment\":\"Your Description\"\r\n\r\n    }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels"
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"id\": 123,\r\n        \"sourceIp\": \"4.4.4.4\",\r\n        \"primaryDestVip\": {\r\n            \"id\": 123,\r\n            \"virtualIp\": \"10.66.68.68\"\r\n           \r\n        },\r\n        \"secondaryDestVip\": {\r\n            \"id\": 123,\r\n            \"virtualIp\": \"10.66.68.68\"\r\n          \r\n        },\r\n        \"internalIpRange\": \"172.17.0.224\",\r\n       \r\n        \"ipUnnumbered\": false,\r\n        \"comment\":\"Your Description\"\r\n    }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "GRE Tunnels - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/greTunnels/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"greTunnels",
										"123"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Static IP",
					"item": [
						{
							"name": "Static IPs - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/staticIP",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Get 1",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/staticIP/1234",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP",
										"1234"
									]
								}
							},
							"response": []
						},
						{
							"name": "City Geo Info - Get by city name",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/region/search?prefix=Mohali",
									"host": [
										"{{url}}"
									],
									"path": [
										"region",
										"search"
									],
									"query": [
										{
											"key": "prefix",
											"value": "Mohali"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "City Geo Info - Get by geo-coordinates",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/region/byGeoCoordinates?latitude=80&longitude=80",
									"host": [
										"{{url}}"
									],
									"path": [
										"region",
										"byGeoCoordinates"
									],
									"query": [
										{
											"key": "latitude",
											"value": "80"
										},
										{
											"key": "longitude",
											"value": "80"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "City Geo Info - Get by IP address",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "{{url}}/region/byIPAddress/81.8.4.2",
									"host": [
										"{{url}}"
									],
									"path": [
										"region",
										"byIPAddress",
										"81.8.4.2"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Validate",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"ipAddress\": \"1.2.3.4\"\r\n    \r\n       \r\n        }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP/validate",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP",
										"validate"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Add, Auto region",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"ipAddress\": \"1.2.3.4\", \r\n        \"geoOverride\": false,\r\n        \"comment\":\"Your Description\",\r\n\r\n         \"routableIP\": true\r\n\r\n       \r\n        }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Add, Manual region",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"ipAddress\": \"1.2.3.4\", \r\n        \"geoOverride\": true,\r\n        \"latitude\": 1,\r\n        \"longitude\": 1,\r\n        \"comment\":\"Your Description\",\r\n         \"routableIP\": true\r\n\r\n       \r\n        }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Update",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n        \"id\": 123,\r\n        \"ipAddress\": \"1.2.3.66\",\r\n        \"geoOverride\": false,\r\n        \"latitude\": 1,\r\n        \"longitude\": 1,\r\n        \"routableIP\": true,\r\n         \"comment\":\"Your Description\",\r\n\r\n\r\n        \r\n        }",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP",
										"123"
									]
								}
							},
							"response": []
						},
						{
							"name": "Static IPs - Delete",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 204\"] = responseCode.code === 204;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "DELETE",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "{{url}}/staticIP/123",
									"host": [
										"{{url}}"
									],
									"path": [
										"staticIP",
										"123"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "IPv6",
					"item": [
						{
							"name": "IPv6 Configuration - Get details",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/ipv6config",
									"host": [
										"{{url}}"
									],
									"path": [
										"ipv6config"
									]
								}
							},
							"response": []
						},
						{
							"name": "NAT64 Prefixes - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/ipv6config/nat64prefix",
									"host": [
										"{{url}}"
									],
									"path": [
										"ipv6config",
										"nat64prefix"
									]
								}
							},
							"response": []
						},
						{
							"name": "DNS64 Prefix - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/ipv6config/dns64prefix",
									"host": [
										"{{url}}"
									],
									"path": [
										"ipv6config",
										"dns64prefix"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Subclouds",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/subclouds",
							"host": [
								"{{url}}"
							],
							"path": [
								"subclouds"
							]
						}
					},
					"response": []
				},
				{
					"name": "Subclouds - isLastDcInCountry",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/subclouds/isLastDcInCountry/2447?dcId=512",
							"host": [
								"{{url}}"
							],
							"path": [
								"subclouds",
								"isLastDcInCountry",
								"2447"
							],
							"query": [
								{
									"key": "dcId",
									"value": "512"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Subclouds",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"exclusions\": [\n        {\n            \"datacenter\": {\n                \"id\": 0,\n                \"name\": \"string\"\n\n            },\n    \"startTime\": 0,\n      \"endTime\": 0         }\n    ]\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/subclouds/1",
							"host": [
								"{{url}}"
							],
							"path": [
								"subclouds",
								"1"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "URL Categories",
			"item": [
				{
					"name": "URL Categories - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlCategories",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Get all custom",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlCategories?customOnly=true",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories"
							],
							"query": [
								{
									"key": "customOnly",
									"value": "true"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Get all (lite)",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlCategories/lite",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"lite"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlCategories/MUSIC",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"MUSIC"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Quota",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlCategories/urlQuota",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"urlQuota"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"configuredName\":\"Blogs\",\n   \"customCategory\":true,\n   \"superCategory\":\"NEWS_AND_MEDIA\",\n   \"keywords\":[\"blog\"],\n   \"urls\":[  \n      \"livejournal.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/urlCategories",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"configuredName\":\"Sport\",\n   \"customCategory\":true,\n   \"superCategory\":\"USER_DEFINED\",\n   \"urls\":[  \n      \"nhl.com\",\n      \"nba.com\"\n   ],\n   \"id\":\"CUSTOM_02\"\n}"
						},
						"url": {
							"raw": "{{url}}/urlCategories/CUSTOM_02",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"CUSTOM_02"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Add URLs",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"superCategory\":\"ENTERTAINMENT_AND_RECREATION\",\n   \"urls\":[\n      \"mozart.com\"\n   ],\n   \"dbCategorizedUrls\":[\n      \"brahms.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/urlCategories/MUSIC?action=ADD_TO_LIST",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"MUSIC"
							],
							"query": [
								{
									"key": "action",
									"value": "ADD_TO_LIST"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Remove URLs",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n   \"superCategory\":\"ENTERTAINMENT_AND_RECREATION\",\n   \"urls\":[\n      \"mozart.com\"\n   ],\n   \"dbCategorizedUrls\":[\n      \"brahms.com\"\n   ]\n}"
						},
						"url": {
							"raw": "{{url}}/urlCategories/MUSIC?action=REMOVE_FROM_LIST",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"MUSIC"
							],
							"query": [
								{
									"key": "action",
									"value": "REMOVE_FROM_LIST"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								]
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/urlCategories/CUSTOM_01",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"CUSTOM_01"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Review Domain",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[\"Test.YourDomain.com\"]"
						},
						"url": {
							"raw": "{{url}}/urlCategories/review/domains",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"review",
								"domains"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Categories - Review Domain - Add URLs",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[\n    {\n        \"url\": \"Test.123123.automation1.com\",\n        \"domainType\": \"SUBDOMAIN\",\n        \"matches\": [\n            {\n                \"id\": \"CUSTOM_22\",\n                \"name\": \"Test_ReviewDoamin3\"\n            }\n        ]\n    }\n]"
						},
						"url": {
							"raw": "{{url}}/urlCategories/review/domains",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlCategories",
								"review",
								"domains"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Lookup",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[  \n\"google.com\",\"youtube.com\",\"facebook.com\",\"baidu.com\",\"wikipedia.org\",\"yahoo.com\",\"reddit.com\",\"google.co.in\",\"qq.com\",\"taobao.com\",\"amazon.com\",\"tmall.com\",\"twitter.com\",\"google.co.jp\",\"sohu.com\",\"live.com\",\"vk.com\",\"instagram.com\",\"sina.com\",\"360.cn\",\"google.de\",\"jd.com\",\"google.co.uk\",\"linkedin.com\",\"weibo.com\",\"google.fr\",\"google.ru\",\"yahoo.co.jp\",\"yandex.ru\",\"netflix.com\",\"t.co\",\"hao123.com\",\"imgur.com\",\"google.it\",\"ebay.com\",\"pornhub.com\",\"google.es\",\"detail.tmall.com\",\"WordPress.com\",\"msn.com\",\"aliexpress.com\",\"bing.com\",\"tumblr.com\",\"google.ca\",\"livejasmin.com\",\"microsoft.com\",\"stackoverflow.com\",\"twitch.tv\",\"Soso.com\",\"blogspot.com\",\"ok.ru\",\"apple.com\",\"Naver.com\",\"mail.ru\",\"imdb.com\",\"popads.net\",\"tianya.cn\",\"office.com\",\"google.co.kr\",\"github.com\",\"pinterest.com\",\"paypal.com\",\"diply.com\",\"amazon.de\",\"microsoftonline.com\",\"onclckds.com\",\"amazon.co.uk\",\"txxx.com\",\"adobe.com\",\"wikia.com\",\"cnzz.com\",\"xhamster.com\",\"coccoc.com\",\"bongacams.com\",\"fc2.com\",\"pixnet.net\",\"google.pl\",\"dropbox.com\",\"googleusercontent.com\",\"gmw.cn\",\"whatsapp.com\",\"google.co.th\",\"soundcloud.com\",\"google.nl\",\"xvideos.com\",\"Booking.com\",\"rakuten.co.jp\",\"nytimes.com\",\"alibaba.com\",\"bet365.com\",\"ebay.co.uk\",\"quora.com\",\"avito.ru\",\"dailymail.co.uk\",\"globo.com\",\"uol.com\",\"nicovideo.jp\",\"walmart.com\",\"redtube.com\",\"go2cloud.org\"\n]"
						},
						"url": {
							"raw": "{{url}}/urlLookup",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlLookup"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "URL Filtering Policy",
			"item": [
				{
					"name": "URL Filtering Rules - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlFilteringRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlFilteringRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Filtering Rules - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/urlFilteringRules/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlFilteringRules",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Filtering Rules - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						},
						{
							"listen": "prerequest",
							"script": {
								"exec": [
									"var catnum = parseInt(postman.getEnvironmentVariable(\"catnum\"));",
									"postman.setEnvironmentVariable(\"cat\", \"test\"+catnum);",
									"postman.setEnvironmentVariable(\"catnum\", catnum+1);",
									""
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"accessControl\": \"READ_WRITE\",\n    \"name\": \"Test - Adult Content\",\n    \"order\": 1,\n    \"protocols\": [\n        \"ANY_RULE\"\n    ],\n    \"urlCategories\": [\n        \"OTHER_ADULT_MATERIAL\",\n        \"ADULT_THEMES\",\n        \"LINGERIE_BIKINI\",\n        \"NUDITY\",\n        \"PORNOGRAPHY\",\n        \"SEXUALITY\",\n        \"ADULT_SEX_EDUCATION\",\n        \"K_12_SEX_EDUCATION\",\n        \"MATURE_HUMOR\"\n    ],\n    \"state\": \"DISABLED\",\n    \"rank\": 7,\n    \"requestMethods\": [\n        \"OPTIONS\",\n        \"GET\",\n        \"HEAD\",\n        \"POST\",\n        \"PUT\",\n        \"DELETE\",\n        \"TRACE\",\n        \"CONNECT\",\n        \"OTHER\"\n    ],\n    \"blockOverride\": false,\n    \"action\": \"BLOCK\"\n}"
						},
						"url": {
							"raw": "{{url}}/urlFilteringRules",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlFilteringRules"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Filtering Rules - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"accessControl\": \"READ_WRITE\",\n    \"name\": \"Test - Adult Content\",\n    \"order\": 1,\n    \"protocols\": [\n        \"ANY_RULE\"\n    ],\n    \"urlCategories\": [\n        \"OTHER_ADULT_MATERIAL\",\n        \"ADULT_THEMES\",\n        \"LINGERIE_BIKINI\",\n        \"NUDITY\",\n        \"PORNOGRAPHY\",\n        \"SEXUALITY\",\n        \"ADULT_SEX_EDUCATION\",\n        \"K_12_SEX_EDUCATION\",\n        \"MATURE_HUMOR\"\n    ],\n    \"state\": \"ENABLED\",\n    \"rank\": 7,\n    \"requestMethods\": [\n        \"OPTIONS\",\n        \"GET\",\n        \"HEAD\",\n        \"POST\",\n        \"PUT\",\n        \"DELETE\",\n        \"TRACE\",\n        \"CONNECT\",\n        \"OTHER\"\n    ],\n    \"blockOverride\": false,\n    \"action\": \"BLOCK\"\n}"
						},
						"url": {
							"raw": "{{url}}/urlFilteringRules/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlFilteringRules",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL Filtering Rules - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/urlFilteringRules/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"urlFilteringRules",
								"1234"
							]
						}
					},
					"response": []
				}
			],
			"event": [
				{
					"listen": "prerequest",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				},
				{
					"listen": "test",
					"script": {
						"type": "text/javascript",
						"exec": [
							""
						]
					}
				}
			]
		},
		{
			"name": "URL & Cloud App Control Policy Settings",
			"item": [
				{
					"name": "URL & Cloud App Control Policy Settings - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{url}}/advancedUrlFilterAndCloudAppSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"advancedUrlFilterAndCloudAppSettings"
							]
						}
					},
					"response": []
				},
				{
					"name": "URL & Cloud App Control Policy Settings - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n    \"enableDynamicContentCat\": false,\r\n    \"considerEmbeddedSites\": false,\r\n    \"enforceSafeSearch\": false,\r\n    \"enableOffice365\": false,\r\n    \"enableMsftO365\": false,\r\n    \"enableUcaasZoom\": false,\r\n    \"enableUcaasLogMeIn\": false,\r\n    \"enableUcaasRingCentral\": false,\r\n    \"enableUcaasWebex\": false,\r\n    \"enableUcaasTalkdesk\": false,\r\n    \"enableChatGptPrompt\": false,\r\n    \"enableMicrosoftCoPilotPrompt\": false,\r\n    \"enableGeminiPrompt\": false,\r\n    \"enablePOEPrompt\": false,\r\n    \"enableMetaPrompt\": false,\r\n    \"enablePerPlexityPrompt\": false,\r\n    \"blockSkype\": false,\r\n    \"enableNewlyRegisteredDomains\": false,\r\n    \"enableBlockOverrideForNonAuthUser\": false,\r\n    \"enableCIPACompliance\": false\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "{{url}}/advancedUrlFilterAndCloudAppSettings",
							"host": [
								"{{url}}"
							],
							"path": [
								"advancedUrlFilterAndCloudAppSettings"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "User Authentication Settings",
			"item": [
				{
					"name": "Auth Bypass",
					"item": [
						{
							"name": "Auth Bypass - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/authSettings/exemptedUrls",
									"host": [
										"{{url}}"
									],
									"path": [
										"authSettings",
										"exemptedUrls"
									]
								}
							},
							"response": []
						},
						{
							"name": "Auth Bypass - Add to list",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											"var catnum = parseInt(postman.getEnvironmentVariable(\"catnum\"));",
											"postman.setEnvironmentVariable(\"cat\", \"test\"+catnum);",
											"postman.setEnvironmentVariable(\"catnum\", catnum+1);",
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"urls\": [\n        \"zscaler.com\",\n        \"google.com\",\n        \"yahoo.com\"\n    ]\n}"
								},
								"url": {
									"raw": "{{url}}/authSettings/exemptedUrls?action=ADD_TO_LIST",
									"host": [
										"{{url}}"
									],
									"path": [
										"authSettings",
										"exemptedUrls"
									],
									"query": [
										{
											"key": "action",
											"value": "ADD_TO_LIST"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "Auth Bypass - Remove from list",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											"var catnum = parseInt(postman.getEnvironmentVariable(\"catnum\"));",
											"postman.setEnvironmentVariable(\"cat\", \"test\"+catnum);",
											"postman.setEnvironmentVariable(\"catnum\", catnum+1);",
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"urls\": [\n        \"google.com\",\n        \"yahoo.com\"\n    ]\n}"
								},
								"url": {
									"raw": "{{url}}/authSettings/exemptedUrls?action=REMOVE_FROM_LIST",
									"host": [
										"{{url}}"
									],
									"path": [
										"authSettings",
										"exemptedUrls"
									],
									"query": [
										{
											"key": "action",
											"value": "REMOVE_FROM_LIST"
										}
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "SSL Bypass",
					"item": [
						{
							"name": "SSL Bypass - Get all",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "GET",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"url": {
									"raw": "{{url}}/sslSettings/exemptedUrls",
									"host": [
										"{{url}}"
									],
									"path": [
										"sslSettings",
										"exemptedUrls"
									]
								}
							},
							"response": []
						},
						{
							"name": "SSL Bypass - Add to list",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"urls\": [\n        \"zscaler.com\",\n        \"google.com\",\n        \"yahoo.com\"\n    ]\n}"
								},
								"url": {
									"raw": "{{url}}/sslSettings/exemptedUrls?action=ADD_TO_LIST",
									"host": [
										"{{url}}"
									],
									"path": [
										"sslSettings",
										"exemptedUrls"
									],
									"query": [
										{
											"key": "action",
											"value": "ADD_TO_LIST"
										}
									]
								}
							},
							"response": []
						},
						{
							"name": "SSL Bypass - Remove from list",
							"event": [
								{
									"listen": "test",
									"script": {
										"exec": [
											"tests[\"Status code is 200\"] = responseCode.code === 200;"
										],
										"type": "text/javascript"
									}
								},
								{
									"listen": "prerequest",
									"script": {
										"exec": [
											""
										],
										"type": "text/javascript"
									}
								}
							],
							"request": {
								"method": "POST",
								"header": [
									{
										"key": "Content-Type",
										"value": "application/json"
									}
								],
								"body": {
									"mode": "raw",
									"raw": "{\n    \"urls\": [\n        \"google.com\",\n        \"yahoo.com\"\n    ]\n}"
								},
								"url": {
									"raw": "{{url}}/sslSettings/exemptedUrls?action=REMOVE_FROM_LIST",
									"host": [
										"{{url}}"
									],
									"path": [
										"sslSettings",
										"exemptedUrls"
									],
									"query": [
										{
											"key": "action",
											"value": "REMOVE_FROM_LIST"
										}
									]
								}
							},
							"response": []
						}
					]
				}
			]
		},
		{
			"name": "User Management",
			"item": [
				{
					"name": "Departments - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/departments",
							"host": [
								"{{url}}"
							],
							"path": [
								"departments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Departments - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/departments/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"departments",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Departments - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n        \"name\": \"your department Name\"\n    }"
						},
						"url": {
							"raw": "{{url}}/departments",
							"host": [
								"{{url}}"
							],
							"path": [
								"departments"
							]
						}
					},
					"response": []
				},
				{
					"name": "Departments - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": 569727,\n    \"name\": \"your department Name\"\n}"
						},
						"url": {
							"raw": "{{url}}/departments/569727",
							"host": [
								"{{url}}"
							],
							"path": [
								"departments",
								"569727"
							]
						}
					},
					"response": []
				},
				{
					"name": "Departments - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/departments/569727",
							"host": [
								"{{url}}"
							],
							"path": [
								"departments",
								"569727"
							]
						}
					},
					"response": []
				},
				{
					"name": "Groups - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/groups",
							"host": [
								"{{url}}"
							],
							"path": [
								"groups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Groups - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/groups/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"groups",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Groups - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n        \"name\": \"your groups Name\"\n    }"
						},
						"url": {
							"raw": "{{url}}/groups",
							"host": [
								"{{url}}"
							],
							"path": [
								"groups"
							]
						}
					},
					"response": []
				},
				{
					"name": "Groups - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": 569727,\n    \"name\": \"your groups Name\"\n}"
						},
						"url": {
							"raw": "{{url}}/groups/569727",
							"host": [
								"{{url}}"
							],
							"path": [
								"groups",
								"569727"
							]
						}
					},
					"response": []
				},
				{
					"name": "Groups - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript",
								"packages": {}
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/groups/569727",
							"host": [
								"{{url}}"
							],
							"path": [
								"groups",
								"569727"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users?page=1&pageSize=100",
							"host": [
								"{{url}}"
							],
							"path": [
								"users"
							],
							"query": [
								{
									"key": "page",
									"value": "1"
								},
								{
									"key": "pageSize",
									"value": "100"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Get 1",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Search by name",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users?name=jay",
							"host": [
								"{{url}}"
							],
							"path": [
								"users"
							],
							"query": [
								{
									"key": "name",
									"value": "jay"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Search by group",
					"event": [
						{
							"listen": "test",
							"script": {
								"type": "text/javascript",
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								]
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users?group=guest",
							"host": [
								"{{url}}"
							],
							"path": [
								"users"
							],
							"query": [
								{
									"key": "group",
									"value": "guest"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Search by department",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users?dept=finance",
							"host": [
								"{{url}}"
							],
							"path": [
								"users"
							],
							"query": [
								{
									"key": "dept",
									"value": "finance"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "User References - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users/references",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"references"
							]
						}
					},
					"response": []
				},
				{
					"name": "Auditors - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"url": {
							"raw": "{{url}}/users/auditors",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"auditors"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Add",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"name\":\"guest1234\",\n   \"email\":\"guest1234@yourcompany.com\",\n   \"groups\": [\n      {\n        \"id\": 75457,\n        \"name\": \"guest-wifi\"\n      }\n    ],\n    \"department\": {\n      \"id\": 75458,\n      \"name\": \"guests\"\n    },\n    \"comments\":\"guest wi-fi user\",\n    \"adminUser\": false,\n    \"password\":\"asd123!!\"\n}"
						},
						"url": {
							"raw": "{{url}}/users",
							"host": [
								"{{url}}"
							],
							"path": [
								"users"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Update",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{  \n   \"name\":\"guest1234\",\n   \"email\":\"guest1234@yourcompany.com\",\n   \"groups\": [\n      {\n        \"id\": 75457,\n        \"name\": \"guest-wifi\"\n      }\n    ],\n    \"department\": {\n      \"id\": 75458,\n      \"name\": \"guests\"\n    },\n    \"comments\":\"guest wi-fi user\",\n    \"adminUser\": false,\n    \"password\":\"asd123!!\"\n}"
						},
						"url": {
							"raw": "{{url}}/users/1",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"1"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "{{url}}/users/1234",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"1234"
							]
						}
					},
					"response": []
				},
				{
					"name": "Users - Bulk delete",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 204\"] = responseCode.code === 204;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"ids\":[1234,2345]}"
						},
						"url": {
							"raw": "{{url}}/users/bulkDelete",
							"host": [
								"{{url}}"
							],
							"path": [
								"users",
								"bulkDelete"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Workload Groups",
			"item": [
				{
					"name": "Workload Groups - Get all",
					"event": [
						{
							"listen": "test",
							"script": {
								"exec": [
									"tests[\"Status code is 200\"] = responseCode.code === 200;"
								],
								"type": "text/javascript"
							}
						}
					],
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "JSESSIONID",
								"value": "94C6E2FCF1138425D21194DB2476EB87{{ZS_SESSION_CODE}}",
								"disabled": true
							}
						],
						"url": {
							"raw": "{{url}}/workloadGroups",
							"host": [
								"{{url}}"
							],
							"path": [
								"workloadGroups"
							]
						}
					},
					"response": []
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}